Files
haikuports/dev-util/global/global-6.2.4.recipe
Oliver Tappe 60aba35d64 * convert all .bep files to follow shell syntax
* rename all .bep files to .recipe
2013-03-29 16:31:03 +00:00

30 lines
860 B
Plaintext

DESCRIPTION="GNU Global is a source code tagging system."
HOMEPAGE="http://www.gnu.org/software/global/"
SRC_URI="http://ftp.gnu.org/pub/gnu/global/global-6.2.4.tar.gz"
CHECKSUM_MD5="c778d4e52a30706db7a02070cce1078c"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND="dev-util/ctags >= 5.8"
BUILD()
{
cd global-6.2.4
autoreconf -fi
./configure --prefix="$(finddir B_COMMON_DIRECTORY)" \
--datadir="$(finddir B_COMMON_DOCUMENTATION_DIRECTORY)/doc" \
--mandir="$(finddir B_COMMON_DOCUMENTATION_DIRECTORY)/man" \
--infodir="$(finddir B_COMMON_DOCUMENTATION_DIRECTORY)/info" \
--with-ncurses \
--with-exuberant-ctags="$(finddir B_COMMON_BIN_DIRECTORY)/ctags" \
--with-posix-sort=/bin/sort
make
}
INSTALL()
{
cd global-6.2.4
make install
}
LICENSE="GNU GPL v3"
COPYRIGHT="2000-2012 Tama Communications Corporation
2007-2012 Free Software Foundation, Inc."