0
0
Fork 0
haikuports/dev-util/cscope/cscope-15.9.recipe

58 lines
1.1 KiB
Bash
Raw Permalink Normal View History

2014-01-02 21:40:56 +00:00
SUMMARY="A developer's tool for browsing source code"
2013-10-16 22:17:16 +00:00
DESCRIPTION="
Allows searching code for:
2014-01-02 21:40:56 +00:00
* all references to a symbol
* global definitions
* functions called by a function
* functions calling a function
* text string
* regular expression pattern
* a file
2016-02-26 15:33:51 +00:00
* files including a file"
HOMEPAGE="http://cscope.sourceforge.net/"
2016-02-17 19:26:37 +00:00
COPYRIGHT="1998-2000 The Santa Cruz Operation"
LICENSE="BSD (3-clause)"
2019-10-05 18:54:21 +00:00
REVISION="1"
SOURCE_URI="http://sourceforge.net/projects/cscope/files/cscope/v$portVersion/cscope-$portVersion.tar.gz"
CHECKSUM_SHA256="c5505ae075a871a9cd8d9801859b0ff1c09782075df281c72c23e72115d9f159"
2017-09-16 10:14:03 +00:00
PATCHES="cscope-$portVersion.patchset"
2013-10-16 22:17:16 +00:00
ARCHITECTURES="all"
2016-02-17 19:26:37 +00:00
2013-10-16 22:17:16 +00:00
PROVIDES="
2017-09-16 10:14:03 +00:00
cscope = $portVersion
2013-10-16 22:17:16 +00:00
cmd:cscope = $portVersion compat >= 15
cmd:ocs = $portVersion compat >= 15
"
REQUIRES="
haiku
2013-10-16 22:17:16 +00:00
lib:libncurses
"
BUILD_REQUIRES="
devel:libncurses
"
BUILD_PREREQUIRES="
haiku_devel
2013-10-16 22:17:16 +00:00
cmd:aclocal
2018-08-08 14:18:18 +00:00
cmd:autoreconf
2013-10-16 22:17:16 +00:00
cmd:bison
2018-08-08 14:18:18 +00:00
cmd:flex
2013-10-16 22:17:16 +00:00
cmd:gawk
2018-08-08 14:18:18 +00:00
cmd:gcc
cmd:make
cmd:pkg_config
2013-10-16 22:17:16 +00:00
"
BUILD()
{
2009-12-29 09:56:56 +00:00
autoreconf -fvi
2013-10-16 22:17:16 +00:00
runConfigure ./configure
2009-12-29 09:56:56 +00:00
make
}
INSTALL()
{
2009-12-29 09:56:56 +00:00
make install
}