summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
Diffstat (limited to 'testing')
-rw-r--r--testing/libshout/APKBUILD39
1 files changed, 0 insertions, 39 deletions
diff --git a/testing/libshout/APKBUILD b/testing/libshout/APKBUILD
deleted file mode 100644
index 8f0e1f69f..000000000
--- a/testing/libshout/APKBUILD
+++ /dev/null
@@ -1,39 +0,0 @@
-# Contributor: Francesco Colista <francesco.colista@gmail.com>
-# Maintainer: Francesco Colista <francesco.colista@gmail.com>
-pkgname=libshout
-pkgver=2.2.2
-pkgrel=0
-pkgdesc="Library for accessing a shoutcast/icecast server"
-url="http://www.icecast.org/"
-arch="all"
-license="LGPL"
-depends=
-depends_dev="speex-dev libtheora-dev libvorbis-dev"
-makedepends="$depends_dev"
-install=""
-subpackages="$pkgname-dev $pkgname-doc"
-source="http://downloads.xiph.org/releases/$pkgname/$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
- --localstatedir=/var
- make LDFLAGS+=-lspeex || return 1
-
-}
-package() {
- cd "$_builddir"
- make DESTDIR="$pkgdir" install || return 1
-}
-
-md5sums="4f75fc9901c724b712c371c9a1e782d3 libshout-2.2.2.tar.gz"