mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
main/libao: modernise, fix license, mark no tests
This commit is contained in:
parent
ae51ac47d4
commit
0cd1b8cc91
@ -1,39 +1,31 @@
|
|||||||
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
||||||
pkgname=libao
|
pkgname=libao
|
||||||
pkgver=1.2.0
|
pkgver=1.2.0
|
||||||
pkgrel=1
|
pkgrel=2
|
||||||
pkgdesc="Cross-platform audio output library and plugins"
|
pkgdesc="Cross-platform audio output library and plugins"
|
||||||
url="http://www.xiph.org/ao"
|
url="http://www.xiph.org/ao"
|
||||||
arch="all"
|
arch="all"
|
||||||
license="GPL"
|
options="!check" # No test suite.
|
||||||
|
license="GPL-2.0+"
|
||||||
subpackages="$pkgname-dev $pkgname-doc"
|
subpackages="$pkgname-dev $pkgname-doc"
|
||||||
depends=""
|
depends=""
|
||||||
makedepends="alsa-lib-dev"
|
makedepends="alsa-lib-dev"
|
||||||
source="http://downloads.xiph.org/releases/ao/$pkgname-$pkgver.tar.gz"
|
source="http://downloads.xiph.org/releases/ao/$pkgname-$pkgver.tar.gz"
|
||||||
|
|
||||||
_builddir="$srcdir/$pkgname-$pkgver"
|
build() {
|
||||||
|
cd "$builddir"
|
||||||
prepare() {
|
|
||||||
cd "$_builddir"
|
|
||||||
}
|
|
||||||
|
|
||||||
build () {
|
|
||||||
cd "$_builddir"
|
|
||||||
./configure \
|
./configure \
|
||||||
--build=$CBUILD \
|
--build=$CBUILD \
|
||||||
--host=$CHOST \
|
--host=$CHOST \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--disable-esd \
|
--disable-esd \
|
||||||
--disable-arts \
|
--disable-arts
|
||||||
|| return 1
|
make
|
||||||
make || return 1
|
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
cd "$_builddir"
|
cd "$builddir"
|
||||||
make DESTDIR="$pkgdir" install || return 1
|
make DESTDIR="$pkgdir" install
|
||||||
}
|
}
|
||||||
|
|
||||||
md5sums="9f5dd20d7e95fd0dd72df5353829f097 libao-1.2.0.tar.gz"
|
|
||||||
sha256sums="03ad231ad1f9d64b52474392d63c31197b0bc7bd416e58b1c10a329a5ed89caf libao-1.2.0.tar.gz"
|
|
||||||
sha512sums="9456953826c188d67129ad78366bb86d6243499f2cd340d20d61366f7e40a33f3f8ab601c7f18ce9e24aa22f898093b482b2415b7e428c1486ef7e5ac27b3ee4 libao-1.2.0.tar.gz"
|
sha512sums="9456953826c188d67129ad78366bb86d6243499f2cd340d20d61366f7e40a33f3f8ab601c7f18ce9e24aa22f898093b482b2415b7e428c1486ef7e5ac27b3ee4 libao-1.2.0.tar.gz"
|
||||||
|
Loading…
Reference in New Issue
Block a user