mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-04 01:07:17 +08:00
22 lines
528 B
Bash
22 lines
528 B
Bash
# Moved from CCR
|
|
|
|
pkgname=qsynth
|
|
pkgver=0.3.7
|
|
pkgrel=1
|
|
pkgdesc="Qt GUI for fluidsynth"
|
|
arch=('i686' 'x86_64')
|
|
url="http://qsynth.sourceforge.net/qsynth-index.html"
|
|
license=('GPL')
|
|
depends=('fluidsynth' 'qt' 'portaudio')
|
|
categories=('multimedia')
|
|
options=('!makeflags')
|
|
source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('a101a50a7ecfb7319482a5022df1d58b')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|