mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-22 03:30:05 +02:00
25 lines
536 B
Plaintext
25 lines
536 B
Plaintext
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"
|