On Mon, 01 Jun 2015 16:39:52 +0200, Clemens Ladisch wrote:
IIRC Jack uses some non-standard build system. Try
asking on the Jack
mailing list how to cross-compile it.
Arch is a rolling release that comes with latest stable releases from
upstream.
Jack1 seemingly does use "standard", but jack2 seemingly uses waf.
[rocketmouse@archlinux ~]$ cat /var/abs/extra/jack/PKGBUILD
[snip]
build() {
cd "$srcdir/$_longname-$pkgver"
./configure --prefix=/usr \
--libdir=/usr/lib
make
}
[snip]
[rocketmouse@archlinux ~]$ cat /var/abs/community/jack2/PKGBUILD
[snip]
_wafconf() {
python2 waf configure --prefix=/usr \
--alsa \
--firewire $@
# not building with doxygen
# see
https://github.com/jackaudio/jack2/issues/22
}
[snip]
Hth,
Ralf