From 12a1ece88d78c81a28e0a35948f80ebf13c3736d Mon Sep 17 00:00:00 2001 From: maxice8 Date: Thu, 6 Dec 2018 11:33:36 -0200 Subject: [PATCH] quilt: fix license=, move bash completion files to usr/share --- srcpkgs/quilt/template | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/srcpkgs/quilt/template b/srcpkgs/quilt/template index bf3ef46a6c8..037dd5d00c3 100644 --- a/srcpkgs/quilt/template +++ b/srcpkgs/quilt/template @@ -1,17 +1,20 @@ # Template file for 'quilt' pkgname=quilt version=0.65 -revision=2 +revision=3 build_style=gnu-configure configure_args="--without-rpmbuild" hostmakedepends="perl" short_desc="A Tool for Working with Many Patches" maintainer="Diogo Leal " -license="GPL-2" +license="GPL-2.0-only" homepage="http://savannah.nongnu.org/projects/quilt" distfiles="http://download.savannah.gnu.org/releases/quilt/quilt-${version}.tar.gz" checksum=f6cbc788e5cbbb381a3c6eab5b9efce67c776a8662a7795c7432fd27aa096819 do_install() { make BUILD_ROOT=\"$DESTDIR\" install + + vmkdir usr/share/bash-completion/completions + mv ${DESTDIR}/etc/bash_completion.d/* ${DESTDIR}/usr/share/bash-completion/completions }