Commit 32b10ac5 authored by saltedcoffii's avatar saltedcoffii Committed by GitHub

[New Package] libgdiplus (#4920)

* [New Package] libgdiplus
parent eb7a1881
require 'package'
class Libgdiplus < Package
description 'libgdiplus is the mono library that provides a GDI+-compatible API on non-windows operating systems.'
homepage 'https://www.mono-project.com/docs/gui/libgdiplus/'
version '6.0.5'
compatibility 'all'
source_url 'https://github.com/mono/libgdiplus/archive/6.0.5.tar.gz'
source_sha256 '1fd034f4b636214cc24e94c563cd10b3f3444d9f0660927b60e63fd4131d97fa'
depends_on 'glib'
depends_on 'cairo'
depends_on 'graphite'
depends_on 'libexif'
depends_on 'libtiff'
def self.build
system "env NOCONFIGURE=1 ./autogen.sh"
system "./configure #{CREW_OPTIONS} \
--disable-static"
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment