diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-04-24 00:28:02 -0300 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-05-28 13:03:15 +0000 |
commit | 0439db0e8fe38c38d7554a00de91b1e21342b9cc (patch) | |
tree | 5af67196997dd7ef8f5fcf8cc5ce96e34c301f7c /main/libao | |
parent | 036c18348a90dde720bdd8bbdea1a501f6eb70d1 (diff) | |
download | aports-0439db0e8fe38c38d7554a00de91b1e21342b9cc.tar.bz2 aports-0439db0e8fe38c38d7554a00de91b1e21342b9cc.tar.xz |
main/libao: update to 1.2.2
Diffstat (limited to 'main/libao')
-rw-r--r-- | main/libao/APKBUILD | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/main/libao/APKBUILD b/main/libao/APKBUILD index 6b7560afc1..b67860178c 100644 --- a/main/libao/APKBUILD +++ b/main/libao/APKBUILD @@ -1,16 +1,15 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=libao -pkgver=1.2.0 -pkgrel=3 +pkgver=1.2.2 +pkgrel=0 pkgdesc="Cross-platform audio output library and plugins" url="http://www.xiph.org/ao" arch="all" options="!check" # No test suite. -license="GPL-2.0+" -subpackages="$pkgname-dev $pkgname-doc" -depends="" -makedepends="alsa-lib-dev" -source="http://downloads.xiph.org/releases/ao/$pkgname-$pkgver.tar.gz +license="GPL-2.0-or-later" +subpackages="$pkgname-doc $pkgname-dev" +makedepends="alsa-lib-dev automake autoconf libtool" +source="$pkgname-$pkgver.tar.gz::https://github.com/xiph/libao/archive/${pkgver}.tar.gz CVE-2017-11548.patch " @@ -20,12 +19,15 @@ source="http://downloads.xiph.org/releases/ao/$pkgname-$pkgver.tar.gz build() { cd "$builddir" + autoreconf -fi + ./configure \ --build=$CBUILD \ --host=$CHOST \ --prefix=/usr \ --disable-esd \ - --disable-arts + --disable-arts \ + --enable-alsa-mmap make } @@ -34,5 +36,5 @@ package() { make DESTDIR="$pkgdir" install } -sha512sums="9456953826c188d67129ad78366bb86d6243499f2cd340d20d61366f7e40a33f3f8ab601c7f18ce9e24aa22f898093b482b2415b7e428c1486ef7e5ac27b3ee4 libao-1.2.0.tar.gz +sha512sums="d2736d25b60862e7d7469611ce31b1df40a4366ab160e2ff1b46919ae91692d1596c8468e4f016303b306fc3ac1bddc7b727f535a362f403c3fe7c6532e9045a libao-1.2.2.tar.gz 2108047bf0b17b1a516c6acaa7d373f46f0c8efe8d355c5353abf73ead987b5a3b97a102ebd596113ca8670d303c13922e5cca764c0604971a1ccac4cba770be CVE-2017-11548.patch" |