void-packages/srcpkgs/ccache/template
Jürgen Buchmüller 87b91b0444
ccache: update to 3.5
Signed-off-by: Jürgen Buchmüller <pullmoll@t-online.de>
2018-10-16 08:21:00 +02:00

26 lines
945 B
Bash

# Template file for 'ccache'
pkgname=ccache
version=3.5
revision=1
bootstrap=yes
build_style=gnu-configure
makedepends="zlib-devel"
short_desc="A Fast C/C++ Compiler Cache"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
homepage="https://ccache.samba.org/"
license="GPL-3.0-or-later"
distfiles="https://samba.org/ftp/${pkgname}/${pkgname}-${version}.tar.xz"
checksum=bdd44b72ae4506a2e2deef9fefb15c606a474bbca7658cd2be26105155eec012
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; do
ln -sfr ${DESTDIR}/usr/bin/ccache ${DESTDIR}/usr/lib/ccache/bin/${x}-${f}
done
done
}