diff options
-rw-r--r-- | user/libshout/APKBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/user/libshout/APKBUILD b/user/libshout/APKBUILD new file mode 100644 index 000000000..5e0f491b5 --- /dev/null +++ b/user/libshout/APKBUILD @@ -0,0 +1,32 @@ +# Contributor: Francesco Colista <fcolista@alpinelinux.org> +# Maintainer: +pkgname=libshout +pkgver=2.4.1 +pkgrel=2 +pkgdesc="Library for accessing a Icecast server" +url="http://www.icecast.org/" +arch="all" +options="!check" # No test suite. +license="LGPL-2.0+" +depends="" +makedepends="speex-dev libtheora-dev libvorbis-dev openssl-dev" +subpackages="$pkgname-doc $pkgname-dev" +source="https://downloads.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz" + +build() { + cd "$builddir" + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var + make LDFLAGS+=-lspeex +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="4d4b958947e020de3330d49d39d59220fc89315f25f653a7456b9aa24ca9566fca30bb3d65e6348e79958656096b6b864ea8885157d24e55c8d84d6604670219 libshout-2.4.1.tar.gz" |