mirror of
https://github.com/void-linux/void-packages.git
synced 2025-07-29 17:02:56 +02:00
23 lines
679 B
Bash
23 lines
679 B
Bash
# Template file for 'gzip'
|
|
pkgname=gzip
|
|
version=1.14
|
|
revision=1
|
|
bootstrap=yes
|
|
build_style=gnu-configure
|
|
configure_args="ac_cv_prog_LESS=less"
|
|
checkdepends="perl"
|
|
short_desc="GNU compression utility (replacement for compress)"
|
|
maintainer="Enno Boland <gottox@voidlinux.org>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="https://www.gnu.org/software/gzip/"
|
|
distfiles="${GNU_SITE}/gzip/gzip-${version}.tar.xz"
|
|
checksum=01a7b881bd220bfdf615f97b8718f80bdfd3f6add385b993dcf6efd14e8c0ac6
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl) configure_args+=" DEFS=NO_ASM gl_cv_func_fflush_stdin=yes" ;;
|
|
esac
|
|
|
|
pre_check() {
|
|
# help-version test is know to fail
|
|
vsed -i '/help-version\s/d' tests/Makefile
|
|
}
|