diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-03-06 13:56:54 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-03-06 13:56:54 +0000 |
commit | eb390ee12a235bd64ed6ca1941b10f6c96409754 (patch) | |
tree | e1f806a8b1c16556f47649b54c2293b4c1e9526b /main/jasper/APKBUILD | |
parent | 0e22835ead81ba577b7899f9a0cdf5cb6dc759d2 (diff) | |
download | aports-eb390ee12a235bd64ed6ca1941b10f6c96409754.tar.bz2 aports-eb390ee12a235bd64ed6ca1941b10f6c96409754.tar.xz |
main/jasper: new aport
A software-based implementation of the codec specified in the emerging JPEG-2000 Part-1 standard
http://www.ece.uvic.ca/~mdadams/jasper/
Diffstat (limited to 'main/jasper/APKBUILD')
-rw-r--r-- | main/jasper/APKBUILD | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/main/jasper/APKBUILD b/main/jasper/APKBUILD new file mode 100644 index 0000000000..9317a18485 --- /dev/null +++ b/main/jasper/APKBUILD @@ -0,0 +1,44 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=jasper +pkgver=1.900.1 +pkgrel=0 +pkgdesc="A software-based implementation of the codec specified in the emerging JPEG-2000 Part-1 standard" +url="http://www.ece.uvic.ca/~mdadams/jasper/" +license="custom:JasPer2.0" +depends= #"libjpeg>=8 freeglut libxi libxmu mesa" +makedepends="jpeg-dev>=8" +subpackages="$pkgname-dev $pkgname-doc libjasper" +source="http://www.ece.uvic.ca/~mdadams/$pkgname/software/$pkgname-$pkgver.zip + jpc_dec.c.patch" + +_builddir="$srcdir"/$pkgname-$pkgver +prepare() { + cd "$_builddir" + patch -Np1 < "$srcdir"/jpc_dec.c.patch || return 1 + chmod +x configure +} + +build () { + cd "$_builddir" + ./configure --prefix=/usr \ + --mandir=/usr/share/man \ + --enable-shared || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + + make DESTDIR="$pkgdir" install || return 1 + install -Dm644 LICENSE \ + "$pkgdir"/usr/share/licenses/$pkgname/LICENSE || return 1 +} + +libjasper() { + pkgdesc="JPEG-2000 library" + install -d "$subpkgdir"/usr/ + mv "$pkgdir"/usr/lib "$subpkgdir"/usr +} + +md5sums="a342b2b4495b3e1394e161eb5d85d754 jasper-1.900.1.zip +36de7128eea6f701c1e2e13ce5bd8d37 jpc_dec.c.patch" |