Advertisement
Guest User

PKBUILD for gwave2 correction

a guest
Aug 8th, 2012
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.97 KB | None | 0 0
  1. # Contributor: Alexander 'hatred' Drozdov <adrozdoff@gmail.com>
  2. pkgname=gwave2
  3. pkgver=20090213
  4. pkgrel=1
  5. pkgdesc="A waveform viewer for the output of analog electronic circuitsimulators like spice/gnucap"
  6. arch=(i686 x86_64)
  7. url="http://gwave.sourceforge.net/"
  8. license=('GPL')
  9.  
  10. #
  11. # CAUTION: guile-cairo and guile-gnome-platform present in AUR and guile-cairo marks as optional
  12. # depend for guile-gnome-platform but this package can be build only when guile-cairo built
  13. # before guile-gnome-platrorm!
  14. #
  15. depends=('gtk2' 'guile' 'libffi' 'g-wrap' 'guile-lib' 'guile-cairo' 'guile-gnome-platform')
  16.  
  17. source=(http://downloads.sourceforge.net/project/gwave/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz)
  18.  
  19. build() {
  20.  
  21.   cd "$srcdir/$pkgname-$pkgver"
  22.  
  23.   export LIBS=-lX11
  24.  
  25.   ./configure --prefix=/usr
  26.   make || return 1
  27.   make DESTDIR="$pkgdir/" install
  28.  
  29.   #/bin/install -D -m 644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
  30. }
  31.  
  32. md5sums=('73059cfbb4e290a4159555bb7f20880b')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement