move the dragora-mouse tool to archive/dragora-tools/ directory
[dragora.git] / recipes / tools / jack1 / recipe
blobd4f20ce4d213dc1c5adc94477cbfa6e9f5ae86c3
1 # Build recipe for jack (version 1).
3 # Copyright (c) 2018 Matias Fonzo, <selk@dragora.org>.
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 #    http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
17 program=jack-audio-connection-kit
18 version=0.125.0
19 release=1
21 # Set 'outdir' for a nice and well-organized output directory
22 outdir="${outdir}/${arch}/tools"
24 pkgname=jack1
26 tarname=${program}-${version}.tar.gz
28 # Remote source(s)
29 fetch=http://jackaudio.org/downloads/$tarname
31 description="
32 The Jack Audio Connection Kit (version 1).
34 JACK is a low-latency audio server, written primarily for the Linux
35 operating system.  It can connect a number of different applications to
36 an audio device, as well as allowing them to share audio between
37 themselves. Its clients can run in their own processes (ie. as a
38 normal application), or can they can run within a JACK server (ie. a
39 "plugin").
41 JACK is different from other audio server efforts in that it has been
42 designed from the ground up to be suitable for professional audio
43 work.  This means that it focuses on two key areas: synchronous
44 execution of all clients, and low latency operation.
47 homepage=http://jackaudio.org
48 license="GPLv2+, LGPLv2.1"
50 # Source documentation
51 docs="AUTHORS COPYING* README TODO"
52 docsdir="${docdir}/${program}-${version}"
54 build()
56     set -e
58     unpack "${tardir}/$tarname"
60     cd "$srcdir"
62     # Set sane permissions
63     chmod -R u+w,go-w,a+rX-s .
65     # Note about `--enable-portaudio': troubles on compilation.
67     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
68      $configure_args \
69      --libdir=/usr/lib${libSuffix} \
70      --mandir=$mandir \
71      --enable-alsa \
72      --disable-portaudio \
73      --disable-oss \
74      --enable-posix-shm \
75      --enable-sse=no \
76      --build="$(cc -dumpmachine)"
78     make -j${jobs} V=1
79     make -j${jobs} DESTDIR="$destdir" install
81     # Compress and link man pages (if needed)
82     if test -d "${destdir}/$mandir"
83     then
84         (
85             cd "${destdir}/$mandir"
86             find . -type f -exec lzip -9 '{}' +
87             find . -type l | while read -r file
88             do
89                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
90                 rm -- "$file"
91             done
92         )
93     fi
95     # Copy documentation
96     mkdir -p "${destdir}${docsdir}"
97     cp -p $docs "${destdir}${docsdir}"