# Template file for 'ccache'
pkgname=ccache
version=4.0
revision=2
bootstrap=yes
build_style=cmake
configure_args="-DENABLE_TESTING=OFF"
makedepends="libzstd-devel zlib-devel"
short_desc="Fast C/C++ Compiler Cache"
maintainer="Enno Boland <gottox@voidlinux.org>"
license="GPL-3.0-or-later"
homepage="https://ccache.samba.org/"
changelog="https://ccache.dev/releasenotes.html"
distfiles="https://github.com/ccache/ccache/releases/download/v${version}/${pkgname}-${version}.tar.xz"
checksum=ac1b82fe0a5e39905945c4d68fcb24bd0f32344869faf647a1b8d31e544dcb88

if [ -z "$CHROOT_READY" ]; then
	hostmakedepends="cmake-bootstrap"
else
	hostmakedepends="asciidoc perl"
fi

if [ -n "$CHROOT_READY" ] && [ -n "$XBPS_CHECK_PKGS" ]; then
	configure_args+=" -DENABLE_TESTING=ON"
fi

if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then
	makedepends+=" libatomic-devel"
	configure_args+=" -DCMAKE_CXX_STANDARD_LIBRARIES=-latomic"
fi

post_build() {
	if [ "$CHROOT_READY" ]; then
		mv build/doc/Ccache.1 build/doc/ccache.1
	fi
}

post_install() {
	vmkdir usr/lib/ccache/bin
	# clang
	for f in clang clang++; do
		ln -sfr ${DESTDIR}/usr/bin/ccache ${DESTDIR}/usr/lib/ccache/bin/${f}
	done
	# gcc
	for f in gcc cc c++ g++; do
		ln -sfr ${DESTDIR}/usr/bin/ccache ${DESTDIR}/usr/lib/ccache/bin/${f}
		for x in arm-linux-gnueabi arm-linux-gnueabihf armv7l-linux-gnueabihf \
			arm-linux-musleabihf armv7l-linux-musleabihf aarch64-linux-gnu \
			i686-pc-linux-gnu aarch64-linux-musl i686-linux-musl \
			mips-linux-musl mips-linux-muslhf mipsel-linux-musl mipsel-linux-muslhf \
			powerpc-linux-gnu powerpc-linux-musl \
			powerpc64-linux-gnu powerpc64-linux-musl \
			powerpc64le-linux-musl powerpc64le-linux-gnu; do
			ln -sfr ${DESTDIR}/usr/bin/ccache ${DESTDIR}/usr/lib/ccache/bin/${x}-${f}
		done
	done
}