contrib/portaudio/Pkgfile

22 lines
410 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
2023-08-13 09:25:47 +02:00
# Maintainer: unmaintained
2021-05-09 21:27:05 +02:00
# 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() {
2023-08-13 09:25:47 +02:00
cd $name
2020-02-05 10:14:51 +01:00
2023-08-13 09:25:47 +02:00
./configure \
--prefix=/usr \
--enable-cxx
2023-08-13 09:25:47 +02:00
make -j1
make DESTDIR=$PKG install
}