blob: 9e23adf23b838385818db80416b28f583d40463f (
plain)
1 # Description: A free, fast, featureful and portable implementation of the Forth 2012 language.
2 # URL: http://gforth.org/
3 # Maintainer: Jan-Michael Franz, jmf at mesecons dot net
4 # Depends on:
5
6 name=gforth
7 version=0.7.3
8 release=2
9 source=(https://ftp.gnu.org/gnu/gforth/$name-$version.tar.gz)
10
11 build () {
12 cd $name-$version
13
14 ./configure --prefix=/usr
15 make -j1
16 make DESTDIR=$PKG install
17 rm -R $PKG/usr/share/info/
18 rm $PKG/usr/share/gforth/$version/asm/README
19 rm $PKG/usr/share/gforth/$version/compat/README
20 rm $PKG/usr/share/gforth/$version/ec/README
21 }
|