From c394cda428562c0626bdc145912874fd42679948 Mon Sep 17 00:00:00 2001 From: Leonardo Arena Date: Tue, 5 Apr 2011 10:04:33 +0000 Subject: testing/libshout: move to main --- main/libshout/APKBUILD | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 main/libshout/APKBUILD (limited to 'main/libshout') diff --git a/main/libshout/APKBUILD b/main/libshout/APKBUILD new file mode 100644 index 0000000000..8f0e1f69fd --- /dev/null +++ b/main/libshout/APKBUILD @@ -0,0 +1,39 @@ +# Contributor: Francesco Colista +# Maintainer: Francesco Colista +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" -- cgit v1.2.3