summaryrefslogtreecommitdiff
path: root/community/amsynth/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/amsynth/PKGBUILD')
-rw-r--r--community/amsynth/PKGBUILD27
1 files changed, 27 insertions, 0 deletions
diff --git a/community/amsynth/PKGBUILD b/community/amsynth/PKGBUILD
new file mode 100644
index 000000000..038fecfa2
--- /dev/null
+++ b/community/amsynth/PKGBUILD
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer : speps <speps at aur dot archlinux dot org>
+# Contributor: Alessio Biancalana <dottorblaster@gmail.com>
+
+pkgname=amsynth
+pkgver=1.4.1
+pkgrel=1
+pkgdesc="Analogue Modeling SYNTHesizer"
+arch=('i686' 'x86_64')
+url="http://code.google.com/p/$pkgname/"
+license=('GPL')
+depends=('gtkmm' 'jack' 'liblo' 'desktop-file-utils')
+makedepends=('dssi' 'ladspa')
+install="$pkgname.install"
+source=("http://downloads.sourceforge.net/project/amsynthe/amsynth-$pkgver.tar.gz")
+md5sums=('ea3815142cf2000572f40c64b21fd982')
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir/" install
+}