blob: 5945ebb8d815ec979e478b07dbf479996cccae72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Description: GNU project's Forth implementation
# URL: https://www.gnu.org/software/gforth/
# Maintainer: Shokara Kou, shokara at kalli dot st
# Depends on:
name=gforth
version=0.7.3
release=1
source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--with-check
make -j1
make DESTDIR=$PKG install
}
|