contrib/jack/Pkgfile

24 lines
541 B
Plaintext
Raw Normal View History

# Description: A real-time, low latency audio daemon.
# URL: http://jackaudio.org/
2014-11-10 13:28:07 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
# Packager: Danny Rawlins, crux at romster dot me
# Depends on: libsamplerate python
name=jack
2014-09-18 12:47:58 +02:00
version=1.9.10
2016-08-15 00:51:02 +02:00
release=2
2014-09-18 12:47:58 +02:00
source=(https://dl.dropboxusercontent.com/u/28869550/$name-$version.tar.bz2)
build() {
cd $name-$version
2016-08-15 00:51:02 +02:00
local JOBS=$(awk 'BEGIN{RS="-j|--jobs="} NR==2 {print $1}' <<< $MAKEFLAGS)
2011-05-08 08:33:32 +02:00
./waf configure \
--prefix=/usr \
--alsa
2016-08-15 00:51:02 +02:00
./waf build -j$JOBS
./waf install --destdir=$PKG
}