contrib/jack/Pkgfile

23 lines
446 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
2021-02-20 17:17:54 +01:00
# Depends on: dbus libsamplerate python3
name=jack
2021-09-01 13:21:53 +02:00
version=1.9.19
2019-12-23 14:18:29 +01:00
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 \
2021-02-09 10:29:05 +01:00
--alsa \
--dbus \
--classic
2011-05-08 08:33:32 +02:00
2018-05-07 14:31:35 +02:00
./waf build -j ${JOBS-1}
./waf install --destdir=$PKG
}