26 lines
898 B
Bash
26 lines
898 B
Bash
# Template file for 'ccache'
|
|
pkgname=ccache
|
|
version=3.3.3
|
|
revision=3
|
|
bootstrap=yes
|
|
build_style=gnu-configure
|
|
makedepends="zlib-devel"
|
|
short_desc="A Fast C/C++ Compiler Cache"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
homepage="http://ccache.samba.org"
|
|
license="GPL-2"
|
|
distfiles="http://samba.org/ftp/${pkgname}/${pkgname}-${version}.tar.bz2"
|
|
checksum=2985bc5e32ebe38d2958d508eb54ddcad39eed909489c0c2988035214597ca54
|
|
|
|
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 \
|
|
aarch64-linux-musl i686-linux-musl \
|
|
mips-linux-musl mipsel-linux-musl mipsel-linux-muslhf; do
|
|
ln -sfr ${DESTDIR}/usr/bin/ccache ${DESTDIR}/usr/lib/ccache/bin/${x}-${f}
|
|
done
|
|
done
|
|
}
|