diff --git a/srcpkgs/quilt/template b/srcpkgs/quilt/template index f6a11756dd9..1c83d46f424 100644 --- a/srcpkgs/quilt/template +++ b/srcpkgs/quilt/template @@ -1,11 +1,13 @@ # Template file for 'quilt' pkgname=quilt version=0.66 -revision=2 +revision=3 build_style=gnu-configure -configure_args="--without-rpmbuild" +configure_args="--without-rpmbuild --with-bash=/bin/bash" hostmakedepends="perl" -depends="patch" +# quilt is a bash script. +# All quilt's users use quilt-refresh, which requires perl +depends="patch perl bash" short_desc="Tool for Working with Many Patches" maintainer="Diogo Leal " license="GPL-2.0-only" @@ -18,4 +20,6 @@ do_install() { vmkdir usr/share/bash-completion/completions mv ${DESTDIR}/etc/bash_completion.d/* ${DESTDIR}/usr/share/bash-completion/completions + # For sanity + rm -f ${DESTDIR}/usr/share/quilt/compat/{awk,bash,column} }