contrib/nawk/Pkgfile

25 lines
585 B
Plaintext

# 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
version=20211103
realn=awk
gitver=c50ef66d119d87e06a041e5522430265ccdce148
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