861ac185a6
```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 ```
26 lines
849 B
Bash
26 lines
849 B
Bash
# Template file for 'liquidwar'
|
|
pkgname=liquidwar
|
|
version=5.6.5
|
|
revision=1
|
|
build_style="gnu-configure"
|
|
make_build_args="GAMEDIR=/usr/bin DATADIR=/usr/share/liquidwar"
|
|
make_install_args="GAMEDIR=/usr/bin DATADIR=/usr/share/liquidwar"
|
|
make_install_target="install_nolink"
|
|
hostmakedepends="python"
|
|
makedepends="allegro4-devel"
|
|
short_desc="A unique multiplayer wargame"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="http://www.ufoot.org/liquidwar"
|
|
distfiles="http://www.ufoot.org/download/${pkgname}/v5/${version}/${pkgname}-${version}.tar.gz"
|
|
checksum=dad0aa84dd416cad055421ed9b40df39efae78d3df759c0583c64c54f7f2ff5f
|
|
nocross="run build artifarts"
|
|
|
|
CFLAGS="-fcommon"
|
|
|
|
pre_configure() {
|
|
# The assembly only exists for 32 bit x86
|
|
if [ "$XBPS_TARGET_MACHINE" != "i686" ]; then
|
|
configure_args+=" --disable-asm"
|
|
fi
|
|
}
|