desktop/qsynth/PKGBUILD

24 lines
645 B
Bash
Raw Normal View History

2011-08-07 19:33:28 +08:00
pkgname=qsynth
2015-08-09 01:12:13 +08:00
pkgver=0.3.9
2011-08-07 19:33:28 +08:00
pkgrel=1
pkgdesc="Qt GUI for fluidsynth"
arch=('x86_64')
2011-08-07 19:33:28 +08:00
url="http://qsynth.sourceforge.net/qsynth-index.html"
license=('GPL')
depends=('fluidsynth' 'qt' 'portaudio')
categories=('multimedia')
2011-08-07 19:33:28 +08:00
options=('!makeflags')
source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
2015-08-09 01:12:13 +08:00
sha512sums=('7702dc9eb3d38d338dcab5587e02e9fcdaffbe6188437e3b0f54b07499553f7a7d083f233cd21963a908578108f82c0d904b68da2f156ca0ab489e989b5787a8')
2011-08-07 19:33:28 +08:00
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr
make
2011-08-07 19:33:28 +08:00
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}