23 lines
731 B
Text
23 lines
731 B
Text
# Template file for 'ccache'
|
|
pkgname=ccache
|
|
version=3.1.10
|
|
revision=1
|
|
bootstrap=yes
|
|
build_style=gnu-configure
|
|
makedepends="zlib-devel"
|
|
short_desc="A Fast C/C++ Compiler Cache"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="http://ccache.samba.org"
|
|
license="GPL-2"
|
|
distfiles="http://samba.org/ftp/${pkgname}/${pkgname}-${version}.tar.bz2"
|
|
checksum=82b52ac669b6c513617db131631574e32b8df12b75e2fa7a7dc12e6f830f0587
|
|
|
|
post_install() {
|
|
vmkdir usr/lib/ccache/bin
|
|
for f in gcc cc c++ cpp g++; do
|
|
ln -sfr ${DESTDIR}/usr/bin/ccache ${DESTDIR}/usr/lib/ccache/bin/${f}
|
|
for x in arm-linux-gnueabi arm-linux-gnueabihf arm-linux-gnueabihf7; do
|
|
ln -sfr ${DESTDIR}/usr/bin/ccache ${DESTDIR}/usr/lib/ccache/bin/${x}-${f}
|
|
done
|
|
done
|
|
}
|