contrib/nawk/Pkgfile

22 lines
566 B
Plaintext
Raw Normal View History

2020-12-30 22:27:27 +01:00
# Description: The one, true implementation of AWK
# URL: https://github.com/onetrueawk/
# (Really: https://www.cs.princeton.edu/~bwk/btl.mirror/)
# Maintainer: Steffen Nurpmeso, steffen at sdaoden dot eu
name=nawk
2021-01-26 22:48:56 +01:00
version=20210110
2020-12-30 22:27:27 +01:00
realn=awk
2021-01-26 22:48:56 +01:00
gitver=178f660b5a4fde6f39e8065185373166f55b6e0c
2020-12-30 22:27:27 +01:00
release=1
source=(https://github.com/onetrueawk/${realn}/archive/${gitver}/${realn}-${version}.tar.gz)
build() {
cd ${realn}-${gitver}
make
install -D a.out $PKG/usr/bin/$name
install -D -m 0644 awk.1 $PKG/usr/share/man/man1/$name.1
}
# s-sh-mode