Files
haikuports/dev-util/ccache/ccache-3.2.2.recipe
Humdinger 4a6f4a8774 More recipe cosmetics.
Mainly inproved SUMMARY/DESCRIPTION and re-ordering of blocks.
2015-08-25 17:44:40 +02:00

45 lines
832 B
Bash

SUMMARY="A fast compiler cache"
DESCRIPTION="ccache speeds up recompilation by caching previous \
compilations and detecting when same compilation is being done again. \
Supported languages are C, C++, Objective-C and Objective-C++."
HOMEPAGE="http://ccache.samba.org/"
COPYRIGHT="2002-2007 Andrew Tridgell
2009-2013 Joel Rosdahl"
LICENSE="GNU GPL v3"
REVISION="1"
SOURCE_URI="http://samba.org/ftp/ccache/ccache-$portVersion.tar.bz2"
CHECKSUM_SHA256="440f5e15141cc72d2bfff467c977020979810eb800882e3437ad1a7153cce7b2"
ARCHITECTURES="x86 x86_gcc2 x86_64"
PROVIDES="
ccache = $portVersion
cmd:ccache
"
REQUIRES="
haiku
lib:libz >= 1
"
BUILD_REQUIRES="
haiku_devel
devel:libz
"
BUILD_PREREQUIRES="
cmd:awk
cmd:gcc
cmd:make
cmd:xargs
"
BUILD()
{
runConfigure ./configure
make $jobArgs
}
INSTALL()
{
make install
}