33 lines
797 B
Bash
33 lines
797 B
Bash
# Template file for 'gawk'
|
|
pkgname=gawk
|
|
version=5.1.0
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--with-readline"
|
|
makedepends="readline-devel"
|
|
short_desc="GNU awk utility"
|
|
maintainer="Enno Boland <gottox@voidlinux.org>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="https://directory.fsf.org/wiki/Gawk"
|
|
distfiles="${GNU_SITE}/${pkgname}/${pkgname}-${version}.tar.xz"
|
|
checksum=cf5fea4ac5665fd5171af4716baab2effc76306a9572988d5ba1078f196382bd
|
|
lib32disabled=yes
|
|
|
|
provides="awk-0_1"
|
|
alternatives="
|
|
awk:awk:/usr/bin/gawk
|
|
awk:awk.1:/usr/share/man/man1/gawk.1"
|
|
|
|
pre_check() {
|
|
vsed -i 's/done | more/done/g' test/Makefile
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl)
|
|
vsed -i '/testext/d' test/Makefile
|
|
vsed -i '/clos1way6/d' test/Makefile ;;
|
|
esac
|
|
}
|
|
|
|
post_install() {
|
|
rm ${DESTDIR}/usr/bin/awk
|
|
}
|