65749575ab
```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 ```
20 lines
553 B
Bash
20 lines
553 B
Bash
# Template file for 'netcat'
|
|
pkgname=netcat
|
|
version=0.7.1
|
|
revision=7
|
|
build_style=gnu-configure
|
|
configure_args="--program-prefix=g"
|
|
short_desc="The GNU netcat utility"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="http://netcat.sourceforge.net/"
|
|
distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version}.tar.gz"
|
|
checksum=30719c9a4ffbcf15676b8f528233ccc54ee6cba96cb4590975f5fd60c68a066f
|
|
|
|
alternatives="
|
|
nc:nc:/usr/bin/gnetcat
|
|
nc:nc.1:/usr/share/man/man1/gnetcat.1"
|
|
|
|
post_install() {
|
|
rm ${DESTDIR}/usr/bin/nc
|
|
}
|