blob: 56524dc94a9fa64dcf308916005ef850dc7d8827 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $Id: PKGBUILD 118833 2011-04-08 10:15:47Z schiv $
# Maintainer: Ray Rashif <schiv@archlinux.org>
# Contributor: damir <damir@archlinux.org>
pkgname=qsynth
pkgver=0.3.6
pkgrel=1
pkgdesc="Qt GUI for FluidSynth"
arch=('i686' 'x86_64')
url="http://qsynth.sourceforge.net/"
license=('GPL')
depends=('fluidsynth' 'qt')
options=('!makeflags')
source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz")
md5sums=('3cba3c87463be75ac188ebc3c3023d12')
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr
make
make DESTDIR="$pkgdir/" install
}
# vim:set ts=2 sw=2 et:
|