# Template file for 'goxel'
pkgname=goxel
version=0.15.1
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://goxel.xyz/"
distfiles="https://github.com/guillaumechereau/goxel/archive/refs/tags/v${version}.tar.gz"
checksum=01c9601ac9d8d38e29d3adff4b79a26c2b9fea4c2d2cb1d134471e499f8c4a84

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.metainfo.xml 644 usr/share/metainfo
}
