void-packages/srcpkgs/gtypist/template
Đoàn Trần Công Danh 7fc9190f0e srcpkgs/g*: convert patches to -Np1
* gcc is kept at -Np0, because of void-cross

```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
```
2021-06-20 13:17:29 +07:00

18 lines
484 B
Bash

# Template file for 'gtypist'
pkgname=gtypist
version=2.9.5
revision=2
build_style=gnu-configure
hostmakedepends="automake"
makedepends="ncurses-devel"
short_desc="Universal typing tutor"
maintainer="Phileas Vöcking <paspartout@fogglabs.de>"
license="GPL-3.0-or-later"
homepage="https://www.gnu.org/software/gtypist/"
distfiles="$GNU_SITE/gtypist/gtypist-${version}.tar.xz"
checksum="c13af40b12479f8219ffa6c66020618c0ce305ad305590fde02d2c20eb9cf977"
pre_configure() {
autoreconf
}