Advertisement
AndreasBWagner

gforth PKGBUILD 0.7.2 & fixes

Apr 13th, 2013
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.73 KB | None | 0 0
  1. # Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
  2. # Contributor: Jason Chu <jason@archlinux.org>
  3. # Contributor: Tom Newsom <Jeepster@gmx.co.uk>
  4.  
  5. pkgname=gforth
  6. pkgver=0.7.2
  7. pkgrel=1
  8. url="http://www.gnu.org/software/gforth/"
  9. pkgdesc="Fast and portable implementation of the ANS Forth language"
  10. arch=('i686' 'x86_64' 'armv6h')
  11. license=('GPL3')
  12. depends=('libtool')
  13. source=("http://www.complang.tuwien.ac.at/forth/$pkgname/$pkgname-$pkgver.tar.gz")
  14. options=('libtool')
  15. install=$pkgname.install
  16. md5sums=('96f2354ec8c4005e1a54035586ed683e')
  17.  
  18. build() {
  19.     cd $srcdir/$pkgname-$pkgver
  20.     CFLAGS='-std=gnu99' ./configure --prefix=/usr
  21.     make -j1
  22. }
  23. package() {
  24.     cd $srcdir/$pkgname-$pkgver
  25.     make PREFIX=/usr DESTDIR=$pkgdir install
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement