void-packages/srcpkgs/gst123/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
602 B
Bash

# Template file for 'gst123'
pkgname=gst123
version=0.3.5
revision=2
build_style=gnu-configure
hostmakedepends="automake pkg-config"
makedepends="ncurses-devel gtk+-devel libxml2-devel gst-plugins-base1-devel gst-plugins-good1"
depends="gst-plugins-good1"
short_desc="GStreamer based CLI player"
maintainer="Orphaned <orphan@voidlinux.org>"
license="LGPL-2.1-or-later"
homepage="http://space.twc.de/~stefan/gst123.php/"
distfiles="http://space.twc.de/~stefan/gst123/gst123-$version.tar.bz2"
checksum=c7b4729773f66cc679e94df76bcc6a95a2222192730f906e527e72624f084a7d
pre_configure() {
autoreconf -fi
}