* daemontools and dmraid 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
```
13 lines
462 B
Bash
13 lines
462 B
Bash
# Template file for 'dvdbackup'
|
|
pkgname=dvdbackup
|
|
version=0.4.2
|
|
revision=3
|
|
build_style=gnu-configure
|
|
makedepends="libdvdread-devel"
|
|
short_desc="Tool to rip video DVDs from the command line"
|
|
maintainer="Nicolas Porcel <nicolasporcel06@gmail.com>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="http://dvdbackup.sourceforge.net/"
|
|
distfiles="${SOURCEFORGE_SITE}/dvdbackup/dvdbackup-${version}.tar.xz"
|
|
checksum=ef8c56fbb82b15b7eef00d2d3118c8253f9770009ed7bb2a5d4849acf88183e6
|