blob: 3ac38769a065e47027d8449b840cfcc1d54c89c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libart-lgpl
pkgver=2.3.20
pkgrel=0
pkgdesc="A library for high-performance 2D graphics"
url="http://www.levien.com/libart/"
license="LGPL"
depends="uclibc"
subpackages="$pkgname-dev"
source="http://ftp.gnome.org/pub/GNOME/sources/libart_lgpl/2.3/libart_lgpl-$pkgver.tar.bz2
"
build() {
cd "$srcdir"/libart_lgpl-$pkgver
./configure --prefix=/usr || return 1
make || return 1
make DESTDIR="$pkgdir" install || return 1
}
md5sums="d0ce67f2ebcef1e51a83136c69242a73 libart_lgpl-2.3.20.tar.bz2"
|