aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Michel Lacroix2010-08-02 23:34:39 -0400
committerAdam Vandenberg2010-10-20 21:30:20 -0700
commit57914cc7d5f50abb44d87da725de074eaaed0d04 (patch)
tree203f2533f6a7de49c2b70eb691a4e9538733c700
parent3454a1a2ae904a9c4c512f5310d030ec3c5632c2 (diff)
downloadhomebrew-57914cc7d5f50abb44d87da725de074eaaed0d04.tar.bz2
New formula: imlib2
-rw-r--r--Library/Formula/imlib2.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/imlib2.rb b/Library/Formula/imlib2.rb
new file mode 100644
index 000000000..cd31e0ded
--- /dev/null
+++ b/Library/Formula/imlib2.rb
@@ -0,0 +1,17 @@
+require 'formula'
+
+class Imlib2 <Formula
+ url 'http://downloads.sourceforge.net/project/enlightenment/imlib2-src/1.4.4/imlib2-1.4.4.tar.bz2'
+ homepage 'http://sourceforge.net/projects/enlightenment/files/'
+ md5 'b6de51879502e857d5b1f7622267a030'
+
+ depends_on 'pkg-config' => :build
+
+ def install
+ ENV.x11 # For freetype
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}",
+ "--enable-amd64=no"
+ system "make install"
+ end
+end