Files
haikuports/dev-util/cscope/cscope-15.8b.recipe
2019-05-24 16:14:07 -04:00

58 lines
1.1 KiB
Bash

SUMMARY="A developer's tool for browsing source code"
DESCRIPTION="
Allows searching code for:
* all references to a symbol
* global definitions
* functions called by a function
* functions calling a function
* text string
* regular expression pattern
* a file
* files including a file"
HOMEPAGE="http://cscope.sourceforge.net/"
COPYRIGHT="1998-2000 The Santa Cruz Operation"
LICENSE="BSD (3-clause)"
REVISION="2"
SOURCE_URI="http://sourceforge.net/projects/cscope/files/cscope/$portVersion/cscope-$portVersion.tar.gz"
CHECKSUM_SHA256="4889d091f05aa0845384b1e4965aa31d2b20911fb2c001b2cdcffbcb7212d3af"
PATCHES="cscope-$portVersion.patchset"
ARCHITECTURES=" x86_gcc2 x86 x86_64"
PROVIDES="
cscope = $portVersion
cmd:cscope = $portVersion compat >= 15
cmd:ocs = $portVersion compat >= 15
"
REQUIRES="
haiku
lib:libncurses
"
BUILD_REQUIRES="
devel:libncurses
"
BUILD_PREREQUIRES="
haiku_devel
cmd:aclocal
cmd:autoreconf
cmd:bison
cmd:flex
cmd:gawk
cmd:gcc
cmd:make
cmd:pkg_config
"
BUILD()
{
autoreconf -fvi
runConfigure ./configure
make
}
INSTALL()
{
make install
}