void-packages/srcpkgs/zip/template
Đoàn Trần Công Danh a92d370caa srcpkgs: add patch_args=-Np0 en-mass
Generated with:

	git ls-files 'srcpkgs/**/patches/*' |
	cut -d/ -f2 | uniq |
	xargs printf 'srcpkgs/%s/template\n'  |
	xargs grep -L 'patch_args=' |
	xargs sed -i "$(printf '1,/^$/{/^$/i\\\npatch_args=-Np0\n}\n')"
2021-06-20 13:17:29 +07:00

22 lines
708 B
Bash

# Template file for 'zip'
pkgname=zip
version=3.0
revision=6
wrksrc="zip30"
short_desc="Create/update ZIP files compatible with pkzip"
maintainer="Orphaned <orphan@voidlinux.org>"
license="Info-ZIP"
homepage="http://infozip.sf.net/"
distfiles="${SOURCEFORGE_SITE}/infozip/zip30.tar.gz"
checksum=f0e8bb1f9b7eb0b01285495a2699df3a4b766784c1765a8f1aeedf63c0806369
patch_args=-Np0
do_build() {
sed -e "s|generic CC=gcc CPP=\"gcc -E\"|zips CC=$CC CPP=\"$CPP -E\" CFLAGS=\"-DLARGE_FILE_SUPPORT $CFLAGS \${CFLAGS_NOOPT}\" LFLAGS2=\"$LDFLAGS\"|g" -i unix/Makefile
make CC=$CC CPP=$CPP -f unix/Makefile generic_gcc
}
do_install() {
make PREFIX=/usr DESTDIR=${DESTDIR} -f unix/Makefile install
vlicense LICENSE
}