updated on Thu Jan 12 16:09:17 UTC 2012
[aur-mirror.git] / legasynth-jack / PKGBUILD
blob7225f44134b9a79c96488fd07c561b8fb8df0f4e
1 # Contributor:  Leslie P. Polzer <polzer@stardawn.org>
2 pkgname=legasynth-jack
3 pkgver=0.4.1
4 pkgrel=2
5 pkgdesc="Legacy synthesizer (e.g. MOS SID) emulator (with JACK support)"
6 url="http://sourceforge.net/projects/cheesetronic/"
7 license="GPL"
8 arch=('i686')
9 depends=(gtkmm1 alsa-lib jack-audio-connection-kit)
10 source=(http://dl.sourceforge.net/sourceforge/cheesetronic/legasynth-$pkgver.tar.gz \
11     gcc4.patch)
13 md5sums=('14b394626aa70495d4b18146d63c4455'
14          '152cdea846ef55ca42a07c8dc6d5a7cc')
15 sha1sums=('42fb04063f00f2191d38eec567c7a72117303d0b'
16           '95d0566b01d661034d3c929b627d127cb9c10559')
18 build() {
19   cd $startdir/src/$pkgname-$pkgver
21   patch -Np1 < $startdir/gcc4.patch
23   rm -f INSTALL
25   automake -a ; autoconf
27   ./configure --prefix=/usr --enable-jack
29   automake -a ; autoconf
31   #automake -a && autoconf
33   make || return 1
34   make DESTDIR=$startdir/pkg install
36   find $startdir/pkg -name "*.la" -exec rm -f '{}' \;