jack: remove long_desc.
This commit is contained in:
parent
f0b0a0aecc
commit
515a22c05b
1 changed files with 3 additions and 19 deletions
|
@ -11,25 +11,8 @@ license="GPL-2, LGPL-2.1"
|
|||
homepage="http://jackaudio.org/"
|
||||
distfiles="http://jackaudio.org/downloads/jack-1.9.9.5.tar.bz2"
|
||||
checksum=65ef5acceabb1ebd4ac8c437be47a522292e3c2a1f7bfa656de7392d9351ebbd
|
||||
long_desc="
|
||||
JACK is system for handling real-time, low latency audio (and MIDI). It runs
|
||||
on GNU/Linux, Solaris, FreeBSD, OS X and Windows (and can be ported to other
|
||||
POSIX-conformant platforms). It can connect a number of different
|
||||
applications to an audio device, as well as allowing them to share audio
|
||||
between themselves. Its clients can run in their own processes (ie. as normal
|
||||
applications), or can they can run within the JACK server (ie. as a plugin).
|
||||
JACK also has support for distributing audio processing across a network,
|
||||
both fast and reliable LANs as well as slower, less reliable WANs.
|
||||
|
||||
JACK was designed from the ground up for professional audio work, and its
|
||||
design focuses on two key areas: synchronous execution of all clients, and
|
||||
low latency operation."
|
||||
|
||||
do_configure() {
|
||||
if [ "$CROSS_BUILD" ]; then
|
||||
export PKG_CONFIG_LIBDIR="$XBPS_CROSS_BASE/usr/lib/pkgconfig"
|
||||
export PKG_CONFIG_SYSROOT_DIR="$XBPS_CROSS_BASE"
|
||||
fi
|
||||
python waf configure --prefix=/usr --alsa --classic --dbus
|
||||
}
|
||||
|
||||
|
@ -51,16 +34,17 @@ do_install() {
|
|||
libjack_package() {
|
||||
short_desc+=" - runtime library"
|
||||
pkg_install() {
|
||||
vmove "usr/lib/*.so*"
|
||||
vmove "usr/lib/*.so.*"
|
||||
vmove usr/lib/jack
|
||||
}
|
||||
}
|
||||
|
||||
jack-devel_package() {
|
||||
depends="libjack>=${version}"
|
||||
depends="libjack>=${version}_${revision}"
|
||||
short_desc+=" - development files"
|
||||
pkg_install() {
|
||||
vmove usr/include
|
||||
vmove usr/lib/pkgconfig
|
||||
vmove "usr/lib/*.so"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue