void-packages/srcpkgs/gnustep-make/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

19 lines
725 B
Bash

# Template file for 'gnustep-make'
pkgname=gnustep-make
version=2.9.0
revision=1
build_style=gnu-configure
conf_files="/etc/GNUstep/GNUstep.conf"
hostmakedepends="which"
short_desc="GNU Step Makefile helpers for a GNUstep-based project"
maintainer="Toyam Cox <Vaelatern@gmail.com>"
license="GPL-3.0-or-later"
homepage="http://www.gnustep.org"
distfiles="http://ftp.gnustep.org/pub/gnustep/core/${pkgname}-${version}.tar.gz"
checksum=a0b066c11257879c7c85311dea69c67f6dc741ef339db6514f85b64992c40d2a
post_install() {
sed -i 's,/builddir/.xbps-gnustep-make/wrappers,/usr/bin,g' ${DESTDIR}/usr/share/GNUstep/Makefiles/config.make
sed -i 's,-specs=/void-packages/[^ ]* ,,g' ${DESTDIR}/usr/share/GNUstep/Makefiles/config.make
}