diff options
author | dustball | 2015-08-08 14:51:22 +0200 |
---|---|---|
committer | dustball | 2015-08-08 14:51:22 +0200 |
commit | 68175ae66e5cbdb3c23cc6c30217846098b3931d (patch) | |
tree | 93fa2280c0f4c8ac9e24e1dbbc9b93e2b7f7e1a1 /PKGBUILD | |
download | aur-68175ae66e5cbdb3c23cc6c30217846098b3931d.tar.gz |
Init
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..f67ffeb42294 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,32 @@ +# Maintainer: SpepS <dreamspepser at yahoo dot it> + +pkgname=gnaural +pkgver=1.0.20110606 +pkgrel=2 +pkgdesc="An opensource binaural-beat generator" +arch=(i686 x86_64) +url="http://gnaural.sourceforge.net/" +license=('GPL') +depends=('libglade' 'portaudio') +conflicts=('gnaural2' 'gnaural-cvs' 'gnaural-bbgen') +install="$pkgname.install" +source=("http://downloads.sourceforge.net/project/$pkgname/Gnaural/$pkgname-$pkgver.tar.gz") +md5sums=('8eea03a78ba02ee5d13c55fc6c0c9a00') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + # desktop file path fix + sed -i "s|gnome/apps/Multimedia|applications|g" Makefile.* + + ./configure --prefix=/usr + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + make DESTDIR="$pkgdir/" install +} + +# vim:set ts=2 sw=2 et: |