diff options
author | Carlo Landmeter <clandmeter@gmail.com> | 2016-02-05 12:17:53 +0100 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2016-02-05 12:17:53 +0100 |
commit | c61a0ebd7b600bbe355244cda670da6b1ed3ade9 (patch) | |
tree | 0b1fe777de942123b770ae581f5f43de46d06011 /main/libshout | |
parent | 62e6bbde9aac7df4e3dff6a57fc6ab0516e7b00a (diff) | |
download | aports-c61a0ebd7b600bbe355244cda670da6b1ed3ade9.tar.bz2 aports-c61a0ebd7b600bbe355244cda670da6b1ed3ade9.tar.xz |
main/libshout: add speex-dev to depends-dev
abuild seems to have an issue not adding proper provides to speex-dev
we add speex-dev to depends-dev as a workaround
Diffstat (limited to 'main/libshout')
-rw-r--r-- | main/libshout/APKBUILD | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/main/libshout/APKBUILD b/main/libshout/APKBUILD index 4975a16d1a..fef4536387 100644 --- a/main/libshout/APKBUILD +++ b/main/libshout/APKBUILD @@ -2,14 +2,16 @@ # Maintainer: Francesco Colista <fcolista@alpinelinux.org> pkgname=libshout pkgver=2.4.1 -pkgrel=0 +pkgrel=1 pkgdesc="Library for accessing a shoutcast/icecast server" url="http://www.icecast.org/" arch="all" license="LGPL" depends= -depends_dev="" -makedepends="$depends_dev libtheora-dev libvorbis-dev speex-dev" +# speex-dev has an isuse to add proper provides +# probaby due to an abuild issue so we need to set speex-dev to depends-dev +depends_dev="speex-dev" +makedepends="$depends_dev libtheora-dev libvorbis-dev" install="" subpackages="$pkgname-doc $pkgname-dev" source="http://downloads.xiph.org/releases/$pkgname/$pkgname-$pkgver.tar.gz" |