PKGBUILDs/extra/qsynth/PKGBUILD
2009-10-09 21:23:22 -05:00

20 lines
575 B
Bash

# $Id: PKGBUILD 26541 2009-02-08 23:21:35Z eric $
# Maintainer: damir <damir@archlinux.org>
pkgname=qsynth
pkgver=0.3.3
pkgrel=1
pkgdesc="Qt GUI for fluidsynth"
arch=('i686' 'x86_64')
url="http://qsynth.sourceforge.net/qsynth-index.html"
license=('GPL')
depends=('fluidsynth' 'qt>=4.3')
source=(http://downloads.sourceforge.net/sourceforge/qsynth/${pkgname}-${pkgver}.tar.gz)
md5sums=('648c49d8935814be03f4001f42b169cf')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr || return 1
make || return 1
make DESTDIR=${pkgdir} install || return 1
}