void-packages/srcpkgs/ccache/template
Jürgen Buchmüller 89994cb2dc
ccache: update to 3.7
Signed-off-by: Jürgen Buchmüller <pullmoll@t-online.de>
2019-04-23 23:23:02 +02:00

32 lines
1.1 KiB
Bash

# Template file for 'ccache'
pkgname=ccache
version=3.7
revision=1
bootstrap=yes
build_style=gnu-configure
make_check_args="CC=gcc"
makedepends="zlib-devel"
checkdepends="perl"
short_desc="Fast C/C++ Compiler Cache"
maintainer="Juan RP <xtraeme@voidlinux.org>"
license="GPL-3.0-or-later"
homepage="https://ccache.samba.org/"
changelog="https://ccache.samba.org/news.html"
distfiles="https://github.com/ccache/ccache/releases/download/v3.7/${pkgname}-${version}.tar.xz"
checksum=409f38bec6161288749a499c82060c99a551c3aced406827e28d183e9c070575
post_install() {
vmkdir usr/lib/ccache/bin
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 \
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
}