Libgdiplus formula

Libgdiplus is the Mono library that provide a GDI+ comptible API on
non-Windows operating systems.
master
David Höppner 2009-12-16 13:31:48 +01:00
parent 453ee0394e
commit f24b3b2a8b
1 changed files with 17 additions and 0 deletions

17
Formula/libgdiplus.rb Normal file
View File

@ -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