summaryrefslogtreecommitdiff
path: root/pcr/amsynth
diff options
context:
space:
mode:
authorGuest One <theguestone@gmail.com>2013-05-13 23:15:32 +0200
committerGuest One <theguestone@gmail.com>2013-05-13 23:15:32 +0200
commitebe5485221a9490bf73eb4da48a290e78ee5a557 (patch)
tree668c2d857f2b7d0f6c71968eee117c3aaa60641a /pcr/amsynth
parente976ce91e513e606983c187ec16d541f2adde9c9 (diff)
added new package amsynth 1.3.2-1
Diffstat (limited to 'pcr/amsynth')
-rw-r--r--pcr/amsynth/PKGBUILD26
1 files changed, 26 insertions, 0 deletions
diff --git a/pcr/amsynth/PKGBUILD b/pcr/amsynth/PKGBUILD
new file mode 100644
index 000000000..58c097cf4
--- /dev/null
+++ b/pcr/amsynth/PKGBUILD
@@ -0,0 +1,26 @@
+# Mantainer: Guest One <theguestone at gmail dot com>
+
+pkgname=amsynth
+pkgver=1.3.2
+pkgrel=1
+pkgdesc="Analogue Modeling SYNTHesizer"
+arch=('i686')
+url="http://code.google.com/p/amsynth/"
+license=('GPL')
+depends=('gtkmm' 'jack')
+source=(http://amsynth.googlecode.com/files/amSynth-${pkgver}.tar.gz)
+md5sums=('991329e433bb8c496f9ca5158faf0bca')
+
+build() {
+ cd ${srcdir}/amSynth-${pkgver}
+
+ sed -i -e 's|/amSynth|/amsynth|' src/main.cc
+
+ autoreconf --force --install
+ ./configure --prefix=/usr
+ make
+
+ install -Dm755 src/amSynth ${pkgdir}/usr/bin/amSynth
+ mkdir -p ${pkgdir}/usr/share/${pkgname}
+ install -m644 skel/{Controllersrc,presets} ${pkgdir}/usr/share/${pkgname}/
+}