mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
22 lines
679 B
Bash
22 lines
679 B
Bash
# $Id: PKGBUILD 34612 2009-04-10 13:33:56Z allan $
|
|
# Maintainer: tobias <tobias@archlinux.net>
|
|
# Contributor: Tobias Kieslich <tobias@justdreams.de>
|
|
|
|
pkgname=qjackctl
|
|
pkgver=0.3.4
|
|
pkgrel=1
|
|
pkgdesc="A qt based frontend to the jack server (jack-audio-connection-kit)"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL2')
|
|
depends=('jack-audio-connection-kit' 'qt')
|
|
options=('!libtool')
|
|
url="http://qjackctl.sourceforge.net/"
|
|
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('65736e83650468256ba22aa5d35fd0cb')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make prefix=${pkgdir}/usr install
|
|
}
|