summaryrefslogtreecommitdiff
path: root/gforth/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'gforth/Pkgfile')
-rw-r--r--gforth/Pkgfile20
1 files changed, 20 insertions, 0 deletions
diff --git a/gforth/Pkgfile b/gforth/Pkgfile
new file mode 100644
index 0000000..5945ebb
--- /dev/null
+++ b/gforth/Pkgfile
@@ -0,0 +1,20 @@
1# Description: GNU project's Forth implementation
2# URL: https://www.gnu.org/software/gforth/
3# Maintainer: Shokara Kou, shokara at kalli dot st
4# Depends on:
5
6name=gforth
7version=0.7.3
8release=1
9source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)
10
11build() {
12 cd $name-$version
13
14 ./configure \
15 --prefix=/usr \
16 --with-check
17
18 make -j1
19 make DESTDIR=$PKG install
20}