mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 06:47:14 +08:00
36 lines
1.2 KiB
Bash
36 lines
1.2 KiB
Bash
# $Id: PKGBUILD 71079 2010-03-03 22:29:45Z dgriffiths $
|
|
# Maintainer: tobias <tobias@archlinux.net>
|
|
# Contributor: Robert Emil Berge <robert@rebi.no>
|
|
|
|
pkgname=jack
|
|
pkgver=0.116.2
|
|
pkgrel=1
|
|
pkgdesc="A low-latency audio server"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL2' 'custom:LGPL2')
|
|
depends=('libsndfile' 'bash')
|
|
makedepends=('doxygen')
|
|
url="http://jackit.sourceforge.net/"
|
|
backup=(etc/conf.d/jack-audio-connection-kit)
|
|
options=('!libtool')
|
|
provides=("jack-audio-connection-kit=${pkgver}")
|
|
replaces=('jack-audio-connection-kit')
|
|
source=(http://jackaudio.org/downloads/jack-audio-connection-kit-${pkgver}.tar.gz \
|
|
${pkgname}.rc.d ${pkgname}.conf.d)
|
|
md5sums=('9c0ae9880e9b6e081f1a238fe6a28bd5' '15a3ecd76b3186eb0fa9c6d16ffbdfef' \
|
|
'0517b67ef912e2a84b6a15dea2dc2680')
|
|
|
|
build() {
|
|
cd ${srcdir}/jack-audio-connection-kit-${pkgver}
|
|
./configure --prefix=/usr --libdir=/usr/lib
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/jack-audio-connection-kit-${pkgver}
|
|
make DESTDIR=${pkgdir} install
|
|
install -Dm755 ../${pkgname}.rc.d ${pkgdir}/etc/rc.d/${pkgname}
|
|
install -Dm644 ../${pkgname}.conf.d ${pkgdir}/etc/conf.d/${pkgname}
|
|
install -Dm644 COPYING.LGPL ${pkgdir}/usr/share/licenses/${pkgname}/COPYING.LGPL
|
|
}
|