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="https://ccache.samba.org/" COPYRIGHT="2002-2007 Andrew Tridgell 2009-2018 Joel Rosdahl" LICENSE="GNU GPL v3" REVISION="1" SOURCE_URI="https://samba.org/ftp/ccache/ccache-$portVersion.tar.bz2" CHECKSUM_SHA256="3aa5587793d4c790bd22999bfc678250c029307b3afb9d16f6f4a49c67b78fb3" PATCHES="ccache-$portVersion.patchset" ARCHITECTURES="!x86_gcc2 x86 x86_64" SECONDARY_ARCHITECTURES="x86" GLOBAL_WRITABLE_FILES="settings/ccache.conf keep-old" USER_SETTINGS_FILES="settings/ccache.conf" # On x86_gcc2 we don't want to install the commands in bin//, but in bin/. commandSuffix=$secondaryArchSuffix commandBinDir=$binDir if [ "$targetArchitecture" = x86_gcc2 ]; then commandSuffix= commandBinDir=$prefix/bin fi PROVIDES=" ccache$secondaryArchSuffix = $portVersion cmd:ccache$commandSuffix " REQUIRES=" haiku$secondaryArchSuffix lib:libz$secondaryArchSuffix " BUILD_REQUIRES=" haiku${secondaryArchSuffix}_devel devel:libz$secondaryArchSuffix " BUILD_PREREQUIRES=" cmd:awk cmd:gcc$secondaryArchSuffix cmd:make cmd:xargs " TEST_REQUIRES=" cmd:cmp cmd:perl " BUILD() { runConfigure --omit-dirs "binDir sysconfDir" ./configure \ --bindir=$commandBinDir \ --sysconfdir="`finddir B_SYSTEM_SETTINGS_DIRECTORY`" make $jobArgs } INSTALL() { make install echo "# System-wide configuration for ccache" > $settingsDir/ccache.conf } TEST() { make check }