7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
16 lines
446 B
Ruby
16 lines
446 B
Ruby
require 'formula'
|
|
|
|
class Libcroco <Formula
|
|
url 'ftp://ftp.gnome.org/pub/GNOME/sources/libcroco/0.6/libcroco-0.6.2.tar.bz2'
|
|
md5 '1429c597aa4b75fc610ab3a542c99209'
|
|
homepage 'http://www.freespiders.org/projects/libcroco/'
|
|
|
|
depends_on 'pkg-config'
|
|
depends_on 'glib'
|
|
depends_on 'intltool'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
system "make install"
|
|
end
|
|
end
|