aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2015-04-01 12:51:46 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2015-04-01 12:52:06 +0000
commit810d220a4c583d3f1caad3709a54218dbe419512 (patch)
tree86060aa4c4187eb42e201a46f526d32cc27c1947 /testing
parent7afc497e0be5bad2931d88174031d3a56a58cc25 (diff)
downloadaports-810d220a4c583d3f1caad3709a54218dbe419512.tar.bz2
aports-810d220a4c583d3f1caad3709a54218dbe419512.tar.xz
main/jbig2dec: moved from testing
Diffstat (limited to 'testing')
-rw-r--r--testing/jbig2dec/APKBUILD45
1 files changed, 0 insertions, 45 deletions
diff --git a/testing/jbig2dec/APKBUILD b/testing/jbig2dec/APKBUILD
deleted file mode 100644
index 80c20ad330..0000000000
--- a/testing/jbig2dec/APKBUILD
+++ /dev/null
@@ -1,45 +0,0 @@
-# Contributor: Michael Zhou <zhoumichaely@gmail.com>
-# Maintainer:
-pkgname=jbig2dec
-pkgver=0.11
-pkgrel=0
-pkgdesc="JBIG2 image compression format decoder"
-url="http://jbig2dec.sourceforge.net"
-arch="all"
-license="GPL2+"
-depends=""
-depends_dev=""
-makedepends="$depends_dev"
-install=""
-subpackages="$pkgname-dev $pkgname-doc"
-source="http://sourceforge.net/projects/$pkgname/files/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz"
-
-_builddir="$srcdir/$pkgname-$pkgver"
-prepare() {
- local i
- cd "$_builddir"
- for i in $source; do
- case $i in
- *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
- esac
- done
-}
-
-build() {
- cd "$_builddir"
- ./configure --prefix=/usr \
- --sysconfdir=/etc \
- --mandir=/usr/share/man \
- --infodir=/usr/share/info \
- --localstatedir=/var \
- || return 1
- make || return 1
-}
-
-package() {
- cd "$_builddir"
- make DESTDIR="$pkgdir" install || return 1
- rm -f "$pkgdir"/usr/lib/*.la
-}
-
-md5sums="1f61e144852c86563fee6e5ddced63f1 jbig2dec-0.11.tar.gz"