Added recipe for ccache-3.1.9, removed earlier versions.

This commit is contained in:
Scott McCreary
2013-08-27 22:10:07 -07:00
parent 065cdb5640
commit c59bbf6ac0
4 changed files with 37 additions and 71 deletions

View File

@@ -1,23 +0,0 @@
DESCRIPTION="ccache is a fast compiler cache."
HOMEPAGE="http://ccache.samba.org/"
SRC_URI="http://samba.org/ftp/ccache/ccache-3.0.1.tar.bz2"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
CHECKSUM_MD5="223449f7891e5d6a15b25100eca5cca4"
BUILD()
{
cd ccache-3.0.1
./configure --prefix=`finddir B_COMMON_DIRECTORY` \
--mandir=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`/man
make
}
INSTALL()
{
cd ccache-3.0.1
make install
}
LICENSE="GNU GPL v3"
COPYRIGHT="2002-2007 Andrew Tridgell
2009-2010 Joel Rosdahl"

View File

@@ -1,24 +0,0 @@
DESCRIPTION="ccache is a fast compiler cache."
HOMEPAGE="http://ccache.samba.org/"
SRC_URI="http://samba.org/ftp/ccache/ccache-3.1.4.tar.bz2"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
CHECKSUM_MD5="676fda8a9a5e02574435c32b22942abd"
BUILD()
{
cd ccache-3.1.4
sed -i 's/\-lm//g' Ma*
./configure --prefix=`finddir B_COMMON_DIRECTORY` \
--mandir=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`/man
make
}
INSTALL()
{
cd ccache-3.1.4
make install
}
LICENSE="GNU GPL v3"
COPYRIGHT="2002-2007 Andrew Tridgell
2009-2011 Joel Rosdahl"

View File

@@ -1,24 +0,0 @@
DESCRIPTION="ccache is a fast compiler cache."
HOMEPAGE="http://ccache.samba.org/"
SRC_URI="http://samba.org/ftp/ccache/ccache-3.1.7.tar.bz2"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
CHECKSUM_MD5="82257745eac54826527946e9e3d046f4"
BUILD()
{
cd ccache-3.1.7
sed -i 's/\-lm//g' Ma*
./configure --prefix=`finddir B_COMMON_DIRECTORY` \
--mandir=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`/man
make
}
INSTALL()
{
cd ccache-3.1.7
make install
}
LICENSE="GNU GPL v3"
COPYRIGHT="2002-2007 Andrew Tridgell
2009-2012 Joel Rosdahl"

View File

@@ -0,0 +1,37 @@
SUMMARY="ccache is a fast compiler cache."
DESCRIPTION="ccache is a compiler cache. It 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/"
SRC_URI="http://samba.org/ftp/ccache/ccache-3.1.9.tar.bz2"
REVISION="1"
LICENSE="GNU GPL v3"
COPYRIGHT="2002-2007 Andrew Tridgell
2009-2013 Joel Rosdahl"
CHECKSUM_MD5="65f48376a91d3651d6527ca568858be8"
ARCHITECTURES="x86 x86_gcc2"
PROVIDES="
cmd:ccache
"
REQUIRES="
lib:libroot >= $haikuVersion
lib:libz >= 1
"
BUILD_REQUIRES="
"
BUILD_PREREQUIRES="
cmd:gcc
cmd:make
"
BUILD()
{
runConfigure ./configure
make $jobArgs
}
INSTALL()
{
make install
}