PKGBUILDs/extra/libgdiplus/PKGBUILD

23 lines
722 B
Bash
Raw Normal View History

2009-10-10 02:23:22 +00:00
# $Id: PKGBUILD 45035 2009-07-06 17:33:02Z daniel $
# Maintainer: Daniel Isenmann <daniel@archlinux.org>
pkgname=libgdiplus
pkgver=2.4.2
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.8.2-5' 'cairo>=1.8.6' 'giflib' 'glib2>=2.20.0' 'libexif')
makedepends=('automake' 'pkgconfig')
options=('!libtool')
source=(http://ftp.novell.com/pub/mono/sources/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
md5sums=('703210950bce2ed0a9824f897f774925')
build() {
cd ${startdir}/src/${pkgname}-${pkgver}
./configure --prefix=/usr --with-cairo=system
make || return 1
make DESTDIR=${startdir}/pkg install || return 1
}