2009-06-04 18:21:19 +00:00
|
|
|
require 'brewkit'
|
|
|
|
|
|
|
|
class PkgConfig <Formula
|
|
|
|
@homepage='http://pkgconfig.freedesktop.org'
|
|
|
|
@url='http://pkgconfig.freedesktop.org/releases/pkg-config-0.23.tar.gz'
|
|
|
|
@md5='d922a88782b64441d06547632fd85744'
|
|
|
|
|
2009-06-18 10:13:11 +00:00
|
|
|
#TODO depend on our glib if available. --with-installed-glib
|
2009-06-04 18:21:19 +00:00
|
|
|
|
|
|
|
def install
|
2009-07-31 01:51:17 +00:00
|
|
|
system "./configure --with-pc-path=/usr/lib/pkgconfig:/usr/local/lib/pkgconfig:#{HOMEBREW_PREFIX}/lib/pkgconfig --disable-debug --prefix='#{prefix}'"
|
2009-06-04 18:21:19 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|