New packages in various states of functionality needed for Mapserver

This commit is contained in:
system_user
2015-07-18 16:06:00 -07:00
parent 26463de598
commit c012c0e23b
8 changed files with 130 additions and 0 deletions

18
packages/fontconfig.rb Normal file
View File

@@ -0,0 +1,18 @@
require 'package'
class Fontconfig < Package
version '2.11.94'
source_url 'http://www.freedesktop.org/software/fontconfig/release/fontconfig-2.11.94.tar.gz'
source_sha1 '3748d8a2b9cf8052dbd003f524d829157f1ead83'
depends_on 'pkgconfig'
def self.build
system "./configure --libdir=/usr/local/lib64/ CC=\"gcc -m64\" CFLAGS=\" -fPIC\""
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end