aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorDavid Höppner2009-12-16 13:31:48 +0100
committerDavid Höppner2010-01-30 13:51:30 +0100
commit0e92e1963e5d00fd99842ac952ee88e8d1f27d66 (patch)
treed1abc3b0fe1cce5fd22877c7e4a33dd6f1ab81d7 /Library
parent5bb5d82d73cf1c9718d0aa8e15fe08431d1e172b (diff)
downloadhomebrew-0e92e1963e5d00fd99842ac952ee88e8d1f27d66.tar.bz2
Libgdiplus formula
Libgdiplus is the Mono library that provide a GDI+ comptible API on non-Windows operating systems.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/libgdiplus.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/libgdiplus.rb b/Library/Formula/libgdiplus.rb
new file mode 100644
index 000000000..c48b9a583
--- /dev/null
+++ b/Library/Formula/libgdiplus.rb
@@ -0,0 +1,17 @@
+require 'formula'
+
+class Libgdiplus <Formula
+ url 'http://ftp.novell.com/pub/mono/sources/libgdiplus/libgdiplus-2.6.tar.bz2'
+ homepage 'http://www.mono-project.com/Libgdiplus'
+ md5 '9107b4429fdafde914bd23405544c58d'
+
+ depends_on 'gettext'
+ depends_on 'libtiff'
+ depends_on 'libexif'
+ depends_on 'glib'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end