Timo Teräs 8f6f2e3166 main/[various]: update config.sub (and remove charset.alias)
for musl build. the changes are automatically done based on previous
build log errors, so this does not guarantee successful build, but
is a required.
2013-09-29 08:47:22 +00:00

36 lines
755 B
Plaintext

# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libsamplerate
pkgver=0.1.8
pkgrel=0
pkgdesc="Secret Rabbit Code - aka Sample Rate Converter for audio"
url="http://www.mega-nerd.com/SRC/index.html"
subpackages="$pkgname-dev"
arch="all"
license="GPL"
depends=""
source="http://www.mega-nerd.com/SRC/$pkgname-$pkgver.tar.gz"
_builddir="$srcdir/$pkgname-$pkgver"
prepare() {
cd "$_builddir"
update_config_sub || return 1
}
build () {
cd "$_builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
rm "$pkgdir"/usr/lib/*.la || return 1
}
md5sums="1c7fb25191b4e6e3628d198a66a84f47 libsamplerate-0.1.8.tar.gz"