diff options
Diffstat (limited to 'testing/libgdiplus/PKGBUILD')
-rw-r--r-- | testing/libgdiplus/PKGBUILD | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/testing/libgdiplus/PKGBUILD b/testing/libgdiplus/PKGBUILD deleted file mode 100644 index 7ebba2deb..000000000 --- a/testing/libgdiplus/PKGBUILD +++ /dev/null @@ -1,29 +0,0 @@ -# $Id: PKGBUILD 148197 2012-01-30 18:48:05Z ibiru $ -# Maintainer: Daniel Isenmann <daniel@archlinux.org> - -pkgname=libgdiplus -pkgver=2.10 -pkgrel=2 -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://download.mono-project.com/sources/${pkgname}/${pkgname}-${pkgver}.tar.bz2 libpng15.patch) -md5sums=('451966e8f637e3a1f02d1d30f900255d' - 'a2d143676bbaceeb88b4c34069e93986') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - patch -p0 <../libpng15.patch - ./configure --prefix=/usr --with-cairo=system || return 1 - - make || return 1 -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install || return 1 -} |