void-packages/srcpkgs/ccache/template
2011-06-24 19:38:44 +02:00

30 lines
1 KiB
Text

# Template file for 'ccache'
pkgname=ccache
version=3.1.5
distfiles="http://samba.org/ftp/$pkgname/$pkgname-$version.tar.bz2"
build_style=gnu_configure
short_desc="compiler cache"
maintainer="Mike Rosset <mike.rosset@gmail.com>"
homepage="http://cache.samba.org"
license="GPL-2"
checksum=aac690d7e452f408d458b11c07ab5bf22055d398b2a010052d3d208670a99c36
long_desc="
ccache is a compiler cache. It speeds up recompilation by caching previous
compilations and detecting when the same compilation is being done again.
Supported languages are C, C++, Objective-C and Objective-C++."
Add_dependency run glibc
Add_dependency run zlib
Add_dependency build zlib-devel
Add_dependency build glibc-devel
post_install()
{
install -d ${DESTDIR}/usr/lib/ccache/bin
ln -sf /usr/bin/ccache $DESTDIR/usr/lib/ccache/bin/cc
ln -sf /usr/bin/ccache $DESTDIR/usr/lib/ccache/bin/gcc
ln -sf /usr/bin/ccache $DESTDIR/usr/lib/ccache/bin/g++
ln -sf /usr/bin/ccache $DESTDIR/usr/lib/ccache/bin/cpp
ln -sf /usr/bin/ccache $DESTDIR/usr/lib/ccache/bin/c++
}