contrib/nawk/Pkgfile

25 lines
585 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
2022-01-28 01:24:45 +01:00
version=20211208
2020-12-30 22:27:27 +01:00
realn=awk
2022-01-28 01:24:45 +01:00
gitver=99f6a432969cd42aa1dcba580eefe9d23601e51b
2020-12-30 22:27:27 +01:00
release=1
2021-02-08 22:56:18 +01:00
source=(
https://github.com/onetrueawk/${realn}/archive/\
${gitver}/${realn}-${version}.tar.gz
)
2020-12-30 22:27:27 +01:00
build() {
cd ${realn}-${gitver}
make
2021-02-08 22:56:18 +01:00
install -D a.out "${PKG}"/usr/bin/${name}
install -D -m 0644 awk.1 "${PKG}"/usr/share/man/man1/${name}.1
2020-12-30 22:27:27 +01:00
}
# s-sh-mode