From dba2b8aa6522aa397a42350edf7d3f35d241ea0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Sat, 20 Aug 2022 00:09:09 +0700 Subject: [PATCH] quilt: correct dependency, use real awk/column --- srcpkgs/quilt/template | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) 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} }