core/libart-lgpl/PKGBUILD

25 lines
664 B
Bash
Raw Normal View History

2016-02-24 04:44:52 +08:00
# Contributions from Arch:
https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/libart-lgpl
2010-03-14 23:48:48 +08:00
pkgname=libart-lgpl
2010-04-07 03:23:26 +08:00
pkgver=2.3.21
2016-02-24 04:44:52 +08:00
pkgrel=2
2010-03-14 23:48:48 +08:00
pkgdesc="A library for high-performance 2D graphics"
url="http://www.levien.com/libart/"
2016-02-24 04:44:52 +08:00
arch=(x86_64)
2010-03-14 23:48:48 +08:00
license=('LGPL')
depends=('glibc')
source=(http://ftp.gnome.org/pub/GNOME/sources/libart_lgpl/2.3/libart_lgpl-${pkgver}.tar.bz2)
2010-04-07 03:23:26 +08:00
sha256sums=('fdc11e74c10fc9ffe4188537e2b370c0abacca7d89021d4d303afdf7fd7476fa')
2010-03-14 23:48:48 +08:00
build() {
2016-02-24 04:44:52 +08:00
cd "${srcdir}/libart_lgpl-${pkgver}"
./configure --prefix=/usr --disable-static
make
}
package() {
cd "${srcdir}/libart_lgpl-${pkgver}"
make DESTDIR="${pkgdir}" install
2010-03-14 23:48:48 +08:00
}