From efb347e69f3f4cef953870405844b53dbefbc615 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Buchm=C3=BCller?= Date: Thu, 19 Mar 2020 17:50:05 +0100 Subject: [PATCH] cropgui: fix order of parameters With this ordering of parameters for ./install.sh the binary is installed in /usr/bin instead of /. --- srcpkgs/cropgui/template | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/srcpkgs/cropgui/template b/srcpkgs/cropgui/template index a46d57c05f2..831938e30f1 100644 --- a/srcpkgs/cropgui/template +++ b/srcpkgs/cropgui/template @@ -1,18 +1,18 @@ # Template file for 'cropgui' pkgname=cropgui version=0.4 -revision=1 -hostmakedepends="python" +revision=2 +hostmakedepends="which" makedepends="python" -depends="python python-Pillow python-gobject2 pygtk libjpeg-turbo-tools -ImageMagick exiftool" +depends="python python-Pillow python-gobject2 + pygtk libjpeg-turbo-tools ImageMagick exiftool" short_desc="Gtk frontend for lossless cropping of jpeg images" maintainer="Orphaned " -license="GPL-2" +license="GPL-2.0-or-later" homepage="https://github.com/jepler/cropgui" distfiles="https://github.com/jepler/cropgui/archive/v${version}.tar.gz" checksum=bf5a5b14032d01799f8d942790e316203f33a7c007eedf23e57c79d5a47d6fb1 do_install() { - ./install.sh -f gtk -t "$PKGDESTDIR" -p /usr -P python2 + ./install.sh -f gtk -t "$PKGDESTDIR" -P python -p /usr }