mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-26 15:32:15 +08:00
26 lines
529 B
Bash
26 lines
529 B
Bash
pkgname=qjackctl
|
|
pkgver=0.3.13
|
|
pkgrel=1
|
|
pkgdesc="A Qt front-end for the JACK low-latency audio server"
|
|
url="http://qjackctl.sourceforge.net/"
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
depends=('jack' 'qt')
|
|
options=('!makeflags')
|
|
categories=('multimedia')
|
|
source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('f0eac5808f4d1d90b111b8570de4f0f2')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|