635e9da391
* par is kept at -Np0 ```sh git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" | while read template; do for p in ${template%/template}/patches/*; do sed -i ' \,^[+-][+-][+-] /dev/null,b /^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b s,^[*][*][*] ,&a/, /^--- /{ s,\(^--- \)\(./\)*,\1a/, s,[.-][Oo][Rr][Ii][Gg]\([ /]\),\1, s/[.-][Oo][Rr][Ii][Gg]$// s/[.]patched[.]\([^.]\)/.\1/ h } /^+++ -/{ g s/^--- a/+++ b/ b } s,\(^+++ \)\(./\)*,\1b/, ' "$p" done sed -i '/^patch_args=/d' $template done ```
27 lines
855 B
Bash
27 lines
855 B
Bash
# Template file for 'qtpass'
|
|
pkgname=qtpass
|
|
version=1.3.2
|
|
revision=1
|
|
wrksrc="QtPass-${version}"
|
|
build_style=qmake
|
|
hostmakedepends="qt5-qmake qt5-host-tools"
|
|
makedepends="qt5-devel qt5-svg-devel"
|
|
depends="pass pwgen"
|
|
short_desc="Multi-platform GUI for pass"
|
|
maintainer="annejan <brouwer@annejan.com>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="https://qtpass.org/"
|
|
changelog="https://raw.githubusercontent.com/IJHack/QtPass/master/CHANGELOG.md"
|
|
distfiles="https://github.com/IJHack/${pkgname}/archive/v${version}.tar.gz"
|
|
checksum=7a68e1afe68462c878c212a79c40ade5ba14b72710c5e62450cf54c7b5621254
|
|
|
|
do_install() {
|
|
vbin main/qtpass
|
|
|
|
vinstall artwork/icon.png 644 \
|
|
usr/share/icons/hicolor/512x512/apps qtpass-icon.png
|
|
vinstall artwork/icon.svg 644 \
|
|
usr/share/icons/hicolor/scalable/apps qtpass-icon.svg
|
|
|
|
vinstall qtpass.desktop 644 usr/share/applications
|
|
}
|