mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
27 lines
576 B
Bash
27 lines
576 B
Bash
pkgname=qjackctl
|
|
pkgver=0.4.1
|
|
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' 'qt5-base' 'qt5-x11extras')
|
|
makedepends=('qt5-tools')
|
|
options=('!makeflags')
|
|
categories=('multimedia')
|
|
source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('6a0a4245e2b9e470e04009e1d0f29f08')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|