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-11-12 20:40:49 +01:00
version=20211103
2020-12-30 22:27:27 +01:00
realn=awk
2021-11-12 20:40:49 +01:00
gitver=c50ef66d119d87e06a041e5522430265ccdce148
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