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
2021-07-31 16:22:24 +02:00
version=20210731
2020-12-30 22:27:27 +01:00
realn=awk
2021-07-31 16:22:24 +02:00
gitver=f9affa922c5e074990a999d486d4bc823590fd93
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