desktop/qsynth/PKGBUILD
2015-08-08 19:12:13 +02:00

24 lines
645 B
Bash

pkgname=qsynth
pkgver=0.3.9
pkgrel=1
pkgdesc="Qt GUI for fluidsynth"
arch=('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)
sha512sums=('7702dc9eb3d38d338dcab5587e02e9fcdaffbe6188437e3b0f54b07499553f7a7d083f233cd21963a908578108f82c0d904b68da2f156ca0ab489e989b5787a8')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}