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

42 lines
1.3 KiB
Bash

# Template file for 'goxel'
pkgname=goxel
version=0.10.7
revision=1
build_style=scons
make_build_args="mode=release werror=0"
hostmakedepends="pkg-config"
makedepends="glfw-devel gtk+3-devel"
short_desc="Open Source 3D voxel editor"
maintainer="John <me@johnnynator.dev>"
license="GPL-3.0-or-later"
homepage="https://guillaumechereau.github.io/goxel/"
distfiles="https://github.com/guillaumechereau/goxel/archive/v${version}.tar.gz"
checksum=dfb91e62bdd5332e3938923db924bae43f12eaa181040d16e4cc7082316adf1c
if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then
makedepends+=" libatomic-devel"
fi
pre_build() {
if [ "$CROSS_BUILD" ];then
vsed -i SConstruct \
-e "/conf = env.Configure()/ a env.Replace(CC = \"$CC\")" \
-e "/conf = env.Configure()/ a env.Replace(CXX = \"$CXX\")"
fi
if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then
vsed -i SConstruct \
-e "/conf = env.Configure()/ a env.Append(LIBS='atomic')"
fi
}
do_install() {
sed -i 's|${SNAP}/icon.png|goxel.png|' snap/gui/goxel.desktop
vbin goxel
vinstall snap/gui/goxel.desktop 644 usr/share/applications
for size in 16 24 32 48 64 128 256; do
vinstall data/icons/icon${size}.png 644 \
usr/share/icons/hicolor/${size}x${size}/apps goxel.png
done
vinstall snap/gui/io.github.guillaumechereau.Goxel.appdata.xml 644 usr/share/metainfo
}