]> git.immae.eu Git - perso/Immae/Config/AUR.git/commitdiff
Add 'waon/' from commit '91b13bfc7b03893f83b4e28042d070c01af9ac3d'
authorIsmaël Bouya <ismael.bouya@normalesup.org>
Thu, 14 Feb 2019 13:19:41 +0000 (14:19 +0100)
committerIsmaël Bouya <ismael.bouya@normalesup.org>
Thu, 14 Feb 2019 13:19:41 +0000 (14:19 +0100)
git-subtree-dir: waon
git-subtree-mainline: 59c4f956ea118a36527820bd067c77c829f423f6
git-subtree-split: 91b13bfc7b03893f83b4e28042d070c01af9ac3d

waon/.SRCINFO [new file with mode: 0644]
waon/PKGBUILD [new file with mode: 0644]

diff --git a/waon/.SRCINFO b/waon/.SRCINFO
new file mode 100644 (file)
index 0000000..924f00a
--- /dev/null
@@ -0,0 +1,19 @@
+# Generated by mksrcinfo v8
+# Thu Feb 14 10:44:17 UTC 2019
+pkgbase = waon
+       pkgdesc = Wave-to-Notes transcriber (WAVE-MIDI converter)
+       pkgver = 0.10
+       pkgrel = 1
+       url = http://waon.sourceforge.net/
+       arch = i686
+       arch = x86_64
+       license = GPL2
+       depends = fftw
+       depends = libsamplerate
+       depends = libao
+       depends = gtk2
+       source = http://downloads.sourceforge.net/waon/waon-0.10.tar.gz
+       sha512sums = 1e3c0ee9cb864c6fbfe831ed5b825fd5f20a8969ef3a6906deb88ceeee9bf8e65396f8b333bc84cf201d596467c415dfcbcd3e977a005952bae2d5983a84fa46
+
+pkgname = waon
+
diff --git a/waon/PKGBUILD b/waon/PKGBUILD
new file mode 100644 (file)
index 0000000..b1b6947
--- /dev/null
@@ -0,0 +1,29 @@
+# Maintainer : Immae <ismael.bouya@normalesup.org>
+# Contributor : Ray Rashif <schiv@archlinux.org>
+
+pkgname=waon
+pkgver=0.10
+pkgrel=1
+pkgdesc="Wave-to-Notes transcriber (WAVE-MIDI converter)"
+arch=('i686' 'x86_64')
+url="http://waon.sourceforge.net/"
+license=('GPL2')
+depends=('fftw' 'libsamplerate' 'libao' 'gtk2')
+source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz")
+sha512sums=('1e3c0ee9cb864c6fbfe831ed5b825fd5f20a8969ef3a6906deb88ceeee9bf8e65396f8b333bc84cf201d596467c415dfcbcd3e977a005952bae2d5983a84fa46')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  sed -i 's:usr/local:usr:g' Makefile
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  install -Dm755 pv $pkgdir/usr/bin/waon-pv
+  install -m755 waon gwaon $pkgdir/usr/bin/
+  install -Dm644 pv.1 $pkgdir/usr/share/man/man1/waon-pv.1
+  install -m644 {waon,gwaon}.1 $pkgdir/usr/share/man/man1/
+}