mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
35 lines
938 B
Plaintext
35 lines
938 B
Plaintext
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
|
|
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
|
|
pkgname=libshout
|
|
pkgver=2.4.1
|
|
pkgrel=4
|
|
pkgdesc="Library for accessing a shoutcast/icecast server"
|
|
url="http://www.icecast.org/"
|
|
arch="all"
|
|
options="!check" # No test suite.
|
|
license="LGPL-2.1"
|
|
depends=
|
|
makedepends="speex-dev libtheora-dev libvorbis-dev libressl-dev"
|
|
install=""
|
|
subpackages="$pkgname-doc $pkgname-dev"
|
|
source="http://downloads.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--with-openssl
|
|
make LDFLAGS+=-lspeex
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="4d4b958947e020de3330d49d39d59220fc89315f25f653a7456b9aa24ca9566fca30bb3d65e6348e79958656096b6b864ea8885157d24e55c8d84d6604670219 libshout-2.4.1.tar.gz"
|