aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDavid Höppner2010-01-31 18:34:00 +0100
committerDavid Höppner2010-01-31 18:34:00 +0100
commit3c44ef0ab1bfa6c94dba975cf870f2f0341abbab (patch)
treeed3e070c6ea2444a6ae0703cd1fd63a66c64f1e5 /Library/Formula
parent4af2fe9826883d6eab2808624aa47059e772ab19 (diff)
downloadhomebrew-3c44ef0ab1bfa6c94dba975cf870f2f0341abbab.tar.bz2
New formula libgsf
Libgsf is a simple i/o library that can read and write common file types and handle structured formats that provide file-system-in-a-file semantics.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/libgsf.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/Library/Formula/libgsf.rb b/Library/Formula/libgsf.rb
new file mode 100644
index 000000000..dd3550c88
--- /dev/null
+++ b/Library/Formula/libgsf.rb
@@ -0,0 +1,20 @@
+require 'formula'
+
+class Libgsf <Formula
+ url 'http://ftp.acc.umu.se/pub/GNOME/sources/libgsf/1.14/libgsf-1.14.16.tar.bz2'
+ homepage 'http://directory.fsf.org/project/libgsf/'
+ md5 '8478d83fda0b6e57f36550c11a693ee1'
+
+ depends_on 'gettext'
+
+ def install
+ configure_args = [
+ "--prefix=#{prefix}",
+ "--disable-debug",
+ "--disable-dependency-tracking",
+ ]
+
+ system "./configure", *configure_args
+ system "make install"
+ end
+end