desktop/qsynth/PKGBUILD
Adrian Chaves Fernandez (Gallaecio) b3e1c003e3 QSynth 0.3.7
2013-04-17 07:58:40 +00:00

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
}