mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
22 lines
722 B
Bash
22 lines
722 B
Bash
# $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
|
|
}
|