0
0
Fork 0
haikuports/dev-util/fastdep/fastdep-0.16.recipe

42 lines
900 B
Bash

SUMMARY="A fast dependency generator for C/C++ files"
DESCRIPTION="fastdep is a preprocessor which generates dependency information \
suitable for Makefile inclusion from C or C++ source files. Meant to run on \
slower hardware, it is several orders of magnitude faster than gcc."
HOMEPAGE="http://www.irule.be/bvh/c++/fastdep/"
COPYRIGHT="2003 Bart Vanhauwaert"
LICENSE="GNU GPL v2"
REVISION="2"
SOURCE_URI="http://ports-space.haiku-files.org/dev-util/source/fastdep-0.16.tar.gz"
CHECKSUM_SHA256="ce87d5aba71a38ad175c831f4f380498e04c22d75478310299812485b3202abb"
PATCHES="fastdep-0.16.patch"
ARCHITECTURES="all"
PROVIDES="
fastdep = $portVersion
cmd:fastdep = $portVersion compat >= 0
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
cmd:gcc
cmd:make
"
BUILD()
{
runConfigure ./configure
make $jobArgs
}
INSTALL()
{
mkdir -p $binDir
cp -f fastdep $binDir
}