a92d370caa
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')"
26 lines
709 B
Bash
26 lines
709 B
Bash
# Template file for 'zutils'
|
|
pkgname=zutils
|
|
version=1.10
|
|
revision=1
|
|
build_style=gnu-configure
|
|
hostmakedepends="lzip"
|
|
depends="bzip2 gzip lzip xz"
|
|
conf_files="/etc/zutilsrc"
|
|
short_desc="Utilities to deal with compressed files transparently"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="http://www.nongnu.org/zutils/zutils.html"
|
|
distfiles="http://download.savannah.gnu.org/releases/${pkgname}/${pkgname}-${version}.tar.lz"
|
|
checksum=0dd44138292d5757648037195b6945c3df70b316221b4285520ad38f2eaeb195
|
|
patch_args=-Np0
|
|
|
|
post_install() {
|
|
cd ${DESTDIR}/usr/bin
|
|
for f in z*; do
|
|
mv -v $f Z${f#z}
|
|
done
|
|
cd ${DESTDIR}/usr/share/man/man1
|
|
for f in z*; do
|
|
mv -v $f Z${f#z}
|
|
done
|
|
}
|