core/libgdiplus/PKGBUILD

23 lines
716 B
Bash
Raw Normal View History

2010-05-17 15:50:50 +08:00
# $Id: PKGBUILD 79379 2010-05-03 18:11:54Z daniel $
2010-03-14 23:48:48 +08:00
# Maintainer: Daniel Isenmann <daniel@archlinux.org>
pkgname=libgdiplus
2010-05-17 15:50:50 +08:00
pkgver=2.6.4
2010-04-07 03:23:26 +08:00
pkgrel=1
2010-03-14 23:48:48 +08:00
pkgdesc="An Open Source Implementation of the GDI+ API"
arch=(i686 x86_64)
license=('MPL' 'LGPL')
url="http://www.mono-project.com"
2010-05-17 15:50:50 +08:00
depends=('libtiff>=3.9.2-2' 'cairo>=1.8.10' 'giflib' 'glib2>=2.24.0' 'libexif')
2010-03-14 23:48:48 +08:00
makedepends=('pkgconfig')
options=('!libtool')
2010-05-17 15:50:50 +08:00
source=(http://ftp.novell.com/pub/mono/sources/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
md5sums=('d860cfca4c13fbbaa054077eda3ab97b')
2010-03-14 23:48:48 +08:00
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr --with-cairo=system || return 1
make || return 1
make DESTDIR="${pkgdir}" install || return 1
}