aboutsummaryrefslogtreecommitdiffstats
path: root/testing/xmlto
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2012-05-03 06:19:04 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2012-05-03 06:19:04 +0000
commit6f1dc21bd4e8ae7ef0d7afce465b2bc15d0ffa07 (patch)
tree1f70b259fe7fb5c82f437c6b006284893cf4eb5a /testing/xmlto
parent66765c30ac7a9c9a560ab43d5618de820fb373c6 (diff)
downloadaports-6f1dc21bd4e8ae7ef0d7afce465b2bc15d0ffa07.tar.bz2
aports-6f1dc21bd4e8ae7ef0d7afce465b2bc15d0ffa07.tar.xz
testing/*: removed
We dont ship testing things in a stable release
Diffstat (limited to 'testing/xmlto')
-rw-r--r--testing/xmlto/APKBUILD41
1 files changed, 0 insertions, 41 deletions
diff --git a/testing/xmlto/APKBUILD b/testing/xmlto/APKBUILD
deleted file mode 100644
index f9c4c5eb2e..0000000000
--- a/testing/xmlto/APKBUILD
+++ /dev/null
@@ -1,41 +0,0 @@
-# Contributor: Carlo Landmeter <clandmeter@gmail.com>
-# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
-pkgname=xmlto
-pkgver=0.0.23
-pkgrel=1
-pkgdesc="Convert xml to many other formats"
-url="http://cyberelk.net/tim/software/xmlto/"
-arch="all"
-license="GPL"
-depends="libxslt perl-yaml-syck perl-test-pod bash"
-depends_dev=
-makedepends="$depends_dev wget bash docbook-xsl"
-install=""
-subpackages="$pkgname-doc"
-source="https://fedorahosted.org/releases/x/m/${pkgname}/${pkgname}-${pkgver}.tar.bz2"
-
-_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 \
- --mandir=/usr/share/man || return 1
- make -j1 || return 1
-}
-
-package() {
- cd "$_builddir"
- make -j1 DESTDIR="$pkgdir" install || return 1
-}
-
-md5sums="3001d6bb2bbc2c8f6c2301f05120f074 xmlto-0.0.23.tar.bz2"