core/libart-lgpl/PKGBUILD
Neofytos Kolokotronis 46238bbc1f libart-lgpl: rebuilt
2016-02-23 21:44:52 +01:00

25 lines
664 B
Bash

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