contrib/portaudio/Pkgfile

23 lines
428 B
Plaintext
Raw Normal View History

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