Magellan Linux

Contents of /trunk/extras/boehm-gc/boehm-gc-8.2.4-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 33602 - (show annotations) (download)
Thu Aug 10 14:50:44 2023 UTC (9 months, 1 week ago) by niro
File size: 533 byte(s)
-ver bump to 8.2.4-r1
1 # $Id$
2
3 PNAME="boehm-gc"
4 PVER="8.2.4"
5 PBUILD="r1"
6
7 PCAT="dev-libs"
8
9 DESCRIPTION="A garbage collector for C and C++."
10 HOMEPAGE="https://www.hboehm.info/gc/"
11
12 DEPEND=">= sys-libs/libstdc++-13.1"
13 SDEPEND=">= virtual/sed"
14
15 SRCFILE="${PNAME/boehm-/}-${PVER}.tar.gz"
16 SRCDIR="${BUILDDIR}/${PNAME/boehm-/}-${PVER}"
17
18 sminclude multilib mbuild
19
20 SRC_URI=(
21 https://github.com/ivmai/bdwgc/releases/download/v${PVER}/${SRCFILE}
22 mirror://${PNAME}/${SRCFILE}
23 )
24
25 src_compile()
26 {
27 cd ${SRCDIR}
28
29 mconfigure --enable-cplusplus || die
30 mmake || die
31 }