2021-05-09 19:27:05 +00:00
|
|
|
# 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
|
2015-08-05 17:31:03 +09:00
|
|
|
|
|
|
|
name=portaudio
|
2021-05-09 19:27:05 +00:00
|
|
|
version=190700_20210406
|
2015-08-05 17:31:03 +09:00
|
|
|
release=1
|
2021-05-09 19:27:05 +00:00
|
|
|
source=(http://files.portaudio.com/archives/pa_stable_v$version.tgz)
|
2015-08-05 17:31:03 +09:00
|
|
|
|
|
|
|
build() {
|
2021-05-09 19:27:05 +00:00
|
|
|
cd $name
|
2020-02-05 20:14:51 +11:00
|
|
|
|
2015-08-05 17:31:03 +09:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
2020-02-05 20:14:51 +11:00
|
|
|
--enable-cxx
|
2015-08-05 17:31:03 +09:00
|
|
|
|
2020-02-05 20:14:51 +11:00
|
|
|
make -j1
|
2015-08-05 17:31:03 +09:00
|
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|
|
|
|
|