diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-24 08:01:31 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-24 08:01:31 +0000 |
commit | b70981b68efcce5256eb11c6cd26ae123b10b6ea (patch) | |
tree | a38be6efae5e2ba15c2e839504632f9b7bfd5f91 /main/libart-lgpl/APKBUILD | |
parent | 2b4df81538b8398442d5296650905c70341dd8d3 (diff) | |
download | aports-b70981b68efcce5256eb11c6cd26ae123b10b6ea.tar.bz2 aports-b70981b68efcce5256eb11c6cd26ae123b10b6ea.tar.xz |
moved extra/* to main/
and fixed misc build issues
Diffstat (limited to 'main/libart-lgpl/APKBUILD')
-rw-r--r-- | main/libart-lgpl/APKBUILD | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/main/libart-lgpl/APKBUILD b/main/libart-lgpl/APKBUILD new file mode 100644 index 0000000000..3ac38769a0 --- /dev/null +++ b/main/libart-lgpl/APKBUILD @@ -0,0 +1,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" |