diff options
| author | Adam Vandenberg | 2010-02-07 21:40:25 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2010-02-10 20:43:50 -0800 |
| commit | 74469d3b484ba738d6d5da835702c9ab0c8f15a2 (patch) | |
| tree | 1b306f35dbce22d439324e1766c918a7f9f317e0 | |
| parent | b8eb1339cff598a21e0e4bdaa2db11dc2e379d18 (diff) | |
| download | homebrew-74469d3b484ba738d6d5da835702c9ab0c8f15a2.tar.bz2 | |
libcroco 0.6.2
| -rw-r--r-- | Library/Formula/libcroco.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/libcroco.rb b/Library/Formula/libcroco.rb new file mode 100644 index 000000000..674b6a1a0 --- /dev/null +++ b/Library/Formula/libcroco.rb @@ -0,0 +1,16 @@ +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 |
