31 lines
831 B
Bash
31 lines
831 B
Bash
# Template file for 'nawk'
|
|
pkgname=nawk
|
|
version=20240423
|
|
revision=1
|
|
build_style=gnu-makefile
|
|
hostmakedepends="bison"
|
|
short_desc="The one, true implementation of AWK"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="SMLNJ"
|
|
homepage="https://github.com/onetrueawk/awk"
|
|
changelog="https://raw.githubusercontent.com/onetrueawk/awk/master/ChangeLog"
|
|
distfiles="https://github.com/onetrueawk/awk/archive/refs/tags/2ndEdition.tar.gz"
|
|
checksum=6c3dbd72b6c4dd58340686df0b189a7813cf49aeeb9aa14846dfbeca1bc8d3a7
|
|
alternatives="
|
|
awk:awk:/usr/bin/nawk
|
|
awk:awk.1:/usr/share/man/man1/nawk.1"
|
|
provides="awk-0_1"
|
|
|
|
CPPFLAGS="-DHAS_ISBLANK"
|
|
|
|
post_patch() {
|
|
vsed -i '/maketab/{s/HOSTCC/BUILD_CC/;s/CFLAGS/BUILD_CFLAGS/}' makefile
|
|
vsed -i 's/-lm/$(LDFLAGS) &/' makefile
|
|
}
|
|
|
|
do_install() {
|
|
vbin a.out nawk
|
|
vman awk.1 nawk.1
|
|
vlicense LICENSE
|
|
}
|