mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
33 lines
684 B
Bash
33 lines
684 B
Bash
pkgname=qjackctl
|
|
pkgver=0.4.3
|
|
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")
|
|
sha1sums=('c093c2c93be9577aa4ef00e6f66cee6fa5d80190')
|
|
|
|
prepare() {
|
|
cd $pkgname-$pkgver
|
|
# fix to make .configure recognize Qt>=5.1
|
|
export CXXFLAGS="${CXXFLAGS} -std=c++11"
|
|
}
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
|
|
make DESTDIR=$pkgdir install
|
|
}
|