contrib/jack/Pkgfile

23 lines
446 B
Plaintext
Raw Normal View History

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