mirror of
https://github.com/void-linux/void-packages.git
synced 2025-04-15 05:37:01 +02:00
30 lines
817 B
Bash
30 lines
817 B
Bash
# Template file for 'nawk'
|
|
pkgname=nawk
|
|
version=20250116
|
|
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://github.com/onetrueawk/awk/blob/master/FIXES"
|
|
distfiles="https://github.com/onetrueawk/awk/archive/refs/tags/${version}.tar.gz"
|
|
checksum=e031b1e1d2b230f276f975bffb923f0ea15f798c839d15a3f26a1a39448e32d7
|
|
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
|
|
}
|