23 lines
428 B
Plaintext
23 lines
428 B
Plaintext
# Description: Portable cross-platform audio I/O library
|
|
# URL: http://portaudio.com
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: alsa-lib
|
|
# Optional: jack-audio-connection-kit
|
|
|
|
name=portaudio
|
|
version=190700_20210406
|
|
release=1
|
|
source=(http://files.portaudio.com/archives/pa_stable_v$version.tgz)
|
|
|
|
build() {
|
|
cd $name
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-cxx
|
|
|
|
make -j1
|
|
make DESTDIR=$PKG install
|
|
}
|
|
|