Advertisement
gucong

PKGBUILD lush2

Apr 9th, 2011
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. # Contributor: derrida <deleuzians@gmail.com>
  2. # Contributor: gucong <gucong43216@gmail.com>
  3.  
  4. pkgname=lush2
  5. pkgver=2.0.1
  6. pkgrel=1
  7. pkgdesc="an object-oriented programming language designed for researchers, experimenters, and engineers interested in large-scale numerical and graphic applications."
  8. url="http://lush.sourceforge.net"
  9. license=('GPL')
  10. depends=('gcc-libs' 'libsm' 'libxft')
  11. arch=('x86_64' 'i686')
  12. options=('!libtool')
  13. source=(http://downloads.sourceforge.net/lush/lush-$pkgver.tar.gz)
  14. md5sums=('35547934a3038a34ef64272cec51c60b')
  15. build() {
  16. cd $srcdir/lush-$pkgver
  17. ./configure --prefix=/usr --with-x
  18. make || return 1
  19. make DESTDIR=$pkgdir install || return 1
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement