diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2018-03-28 09:35:43 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-03-28 13:11:27 +0000 |
commit | c82a96e1527e829878f20d70bb3ab264b07cc073 (patch) | |
tree | b2f7cff4d3ac23d57c7b3610b6525024355ac1a7 /main | |
parent | c2264bdd67dace5896bdde79aae0e9cc3ff0ca19 (diff) | |
download | aports-c82a96e1527e829878f20d70bb3ab264b07cc073.tar.bz2 aports-c82a96e1527e829878f20d70bb3ab264b07cc073.tar.xz |
main/libshout: use libressl
Diffstat (limited to 'main')
-rw-r--r-- | main/libshout/APKBUILD | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/main/libshout/APKBUILD b/main/libshout/APKBUILD index daf5f7af79..50f8a6a291 100644 --- a/main/libshout/APKBUILD +++ b/main/libshout/APKBUILD @@ -2,14 +2,14 @@ # Maintainer: Francesco Colista <fcolista@alpinelinux.org> pkgname=libshout pkgver=2.4.1 -pkgrel=2 +pkgrel=3 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 openssl-dev" +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" @@ -21,7 +21,8 @@ build() { --host=$CHOST \ --prefix=/usr \ --sysconfdir=/etc \ - --localstatedir=/var + --localstatedir=/var \ + --with-openssl make LDFLAGS+=-lspeex } |