diff options
| author | David Höppner | 2009-12-16 13:31:48 +0100 |
|---|---|---|
| committer | David Höppner | 2010-01-30 13:51:30 +0100 |
| commit | 0e92e1963e5d00fd99842ac952ee88e8d1f27d66 (patch) | |
| tree | d1abc3b0fe1cce5fd22877c7e4a33dd6f1ab81d7 /Library | |
| parent | 5bb5d82d73cf1c9718d0aa8e15fe08431d1e172b (diff) | |
| download | homebrew-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.rb | 17 |
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 |
