mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 22:37:14 +08:00
23 lines
716 B
Bash
23 lines
716 B
Bash
# $Id: PKGBUILD 79379 2010-05-03 18:11:54Z daniel $
|
|
# Maintainer: Daniel Isenmann <daniel@archlinux.org>
|
|
|
|
pkgname=libgdiplus
|
|
pkgver=2.6.4
|
|
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=('d860cfca4c13fbbaa054077eda3ab97b')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --with-cairo=system || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|