Advertisement
Guest User

Gnaural - updated PKGBUILD

a guest
Feb 28th, 2012
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. # Maintainer: SpepS <dreamspepser at yahoo dot it>
  2.  
  3. pkgname=gnaural
  4. pkgver=1.0.20110606
  5. pkgrel=1
  6. pkgdesc="An opensource binaural-beat generator"
  7. arch=(i686 x86_64)
  8. url="http://gnaural.sourceforge.net/"
  9. license=('GPL')
  10. depends=('libglade' 'portaudio')
  11. conflicts=('gnaural2' 'gnaural-cvs' 'gnaural-bbgen')
  12. install="$pkgname.install"
  13. source=("http://downloads.sourceforge.net/project/$pkgname/Gnaural/$pkgname-$pkgver.tar.gz")
  14. md5sums=('8eea03a78ba02ee5d13c55fc6c0c9a00')
  15.  
  16. build() {
  17. cd "$srcdir/$pkgname-$pkgver"
  18.  
  19. # desktop file path fix
  20. sed -i "s|gnome/apps/Multimedia|applications|g" Makefile.*
  21.  
  22. ./configure --prefix=/usr
  23. make
  24. }
  25.  
  26. package() {
  27. cd "$srcdir/$pkgname-$pkgver"
  28.  
  29. make DESTDIR="$pkgdir/" install
  30. }
  31.  
  32. # vim:set ts=2 sw=2 et:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement