mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
37 lines
943 B
Bash
37 lines
943 B
Bash
DESCRIPTION="The Boehm-Demers-Weiser conservative garbage collector"
|
|
HOMEPAGE="http://www.hpl.hp.com/personal/Hans_Boehm/gc/"
|
|
SOURCE_URI="http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-7.2alpha6.tar.gz"
|
|
REVISION="1"
|
|
STATUS_HAIKU="stable"
|
|
DEPEND=""
|
|
CHECKSUM_MD5="319d0b18cc4eb735c8038ece9df055e4"
|
|
|
|
BUILD()
|
|
{
|
|
cd gc-7.2alpha6
|
|
libtoolize --force --copy --install
|
|
autoconf -f
|
|
./configure --prefix=$(finddir B_COMMON_DIRECTORY) \
|
|
--datadir=$(finddir B_COMMON_DOCUMENTATION_DIRECTORY) \
|
|
--enable-threads=posix --enable-thread-local-alloc --enable-parallel-mark
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd gc-7.2alpha6
|
|
make install
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
cd gc-7.2alpha6
|
|
make check
|
|
}
|
|
|
|
LICENSE="BOEHM"
|
|
COPYRIGHT="1988, 1989 Hans-J. Boehm, Alan J. Demers
|
|
1991-1996 by Xerox Corporation. All rights reserved.
|
|
1996-1999 by Silicon Graphics. All rights reserved.
|
|
1999-2004 Hewlett-Packard Development Company, L.P."
|