summaryrefslogtreecommitdiff
path: root/gforth/Pkgfile
diff options
context:
space:
mode:
authorShokara Kou <shokara@kalli.st>2021-12-12 18:11:20 -0500
committerShokara Kou <shokara@kalli.st>2021-12-12 18:11:20 -0500
commitac0a30b7d44952b8faf4ac3c4e521ee2dff04135 (patch)
treeb501a0a8b6f2ea2532bae287c9545cf5400d9aac /gforth/Pkgfile
add ports
Ahhh! I forgot to put these under a git repo. :(
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}