void-packages/srcpkgs/ccache/template

24 lines
733 B
Bash
Raw Normal View History

2011-06-24 17:10:00 +02:00
# Template file for 'ccache'
pkgname=ccache
2014-12-12 10:17:10 +01:00
version=3.2.1
revision=2
2012-08-12 08:49:14 +02:00
bootstrap=yes
build_style=gnu-configure
makedepends="zlib-devel"
2012-08-12 08:49:14 +02:00
short_desc="A Fast C/C++ Compiler Cache"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
2012-08-12 08:49:14 +02:00
homepage="http://ccache.samba.org"
2011-06-24 17:10:00 +02:00
license="GPL-2"
2013-01-07 10:03:31 +01:00
distfiles="http://samba.org/ftp/${pkgname}/${pkgname}-${version}.tar.bz2"
2014-12-12 10:17:10 +01:00
checksum=240bf6c7fe3350358d26db2d0379dd32834dbee333a2904bbcf99cb7538086a6
2011-06-24 17:10:00 +02:00
post_install() {
2011-10-16 17:30:28 +02:00
vmkdir usr/lib/ccache/bin
for f in gcc cc c++ cpp g++; do
2013-01-07 10:03:31 +01:00
ln -sfr ${DESTDIR}/usr/bin/ccache ${DESTDIR}/usr/lib/ccache/bin/${f}
2014-10-20 07:45:54 +02:00
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
2011-10-16 17:30:28 +02:00
done
2011-06-24 17:10:00 +02:00
}