contrib/jack/Pkgfile

21 lines
416 B
Plaintext
Raw Normal View History

# Description: A real-time, low latency audio daemon.
2020-06-01 17:45:48 +02:00
# URL: https://jackaudio.org/
2014-11-10 13:28:07 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
2019-12-23 14:18:29 +01:00
# Depends on: libsamplerate python3
name=jack
2019-12-23 14:18:29 +01:00
version=1.9.14
release=1
2018-05-07 14:31:35 +02:00
source=(https://github.com/jackaudio/jack2/archive/v$version.tar.gz)
build() {
cd ${name}2-$version
2011-05-08 08:33:32 +02:00
./waf configure \
--prefix=/usr \
--alsa
2018-05-07 14:31:35 +02:00
./waf build -j ${JOBS-1}
./waf install --destdir=$PKG
}