23 lines
470 B
Plaintext
23 lines
470 B
Plaintext
# Description: Sound sample rate conversion library.
|
|
# URL: http://www.mega-nerd.com/SRC/
|
|
# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
|
|
# Packager: Martin Opel, mo at obbl-net dot de
|
|
# Depends on: libsndfile
|
|
|
|
name=libsamplerate
|
|
version=0.1.2
|
|
release=1
|
|
source=(http://www.mega-nerd.com/SRC/libsamplerate-$version.tar.gz)
|
|
|
|
build() {
|
|
cd libsamplerate-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-static
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|
|
|