diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/libgdiplus/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/libgdiplus/PKGBUILD')
-rw-r--r-- | extra/libgdiplus/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/extra/libgdiplus/PKGBUILD b/extra/libgdiplus/PKGBUILD new file mode 100644 index 000000000..f8d253881 --- /dev/null +++ b/extra/libgdiplus/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 111499 2011-02-27 11:15:27Z daniel $ +# Maintainer: Daniel Isenmann <daniel@archlinux.org> + +pkgname=libgdiplus +pkgver=2.10 +pkgrel=1 +pkgdesc="An Open Source Implementation of the GDI+ API" +arch=(i686 x86_64) +license=('MPL' 'LGPL') +url="http://www.mono-project.com" +depends=('libtiff>=3.9.2-2' 'cairo>=1.8.10' 'giflib' 'glib2>=2.24.0' 'libexif') +makedepends=('pkgconfig') +options=('!libtool') +source=(http://ftp.novell.com/pub/mono/sources/${pkgname}/${pkgname}-${pkgver}.tar.bz2) +md5sums=('451966e8f637e3a1f02d1d30f900255d') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr --with-cairo=system || return 1 + make || return 1 +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install || return 1 +} |