mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
New packages in various states of functionality needed for Mapserver
This commit is contained in:
18
packages/fontconfig.rb
Normal file
18
packages/fontconfig.rb
Normal 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
|
||||
Reference in New Issue
Block a user