mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-13 22:04:37 +02:00
31 lines
811 B
Text
31 lines
811 B
Text
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libsamplerate
|
|
pkgver=0.2.2
|
|
pkgrel=3
|
|
pkgdesc="Secret Rabbit Code - aka Sample Rate Converter for audio"
|
|
url="http://www.mega-nerd.com/SRC/index.html"
|
|
subpackages="$pkgname-static $pkgname-dev $pkgname-doc"
|
|
arch="all"
|
|
license="BSD-2-Clause"
|
|
makedepends="fftw-dev libsndfile-dev linux-headers"
|
|
source="https://github.com/libsndfile/libsamplerate/releases/download/$pkgver/libsamplerate-$pkgver.tar.xz"
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--enable-static
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
sha512sums="
|
|
d23ae54d23209ba22baae9e5fd178dd8e0e99205dada7e7c3a7b3a3d8cf816ed427a411bfeb008427f64da7767d645edce40811f238af11c8c386f5ef25a9f0c libsamplerate-0.2.2.tar.xz
|
|
"
|