Magellan Linux

Contents of /smage/trunk/extras/boehm-gc/boehm-gc-8.2.6-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 17920 - (show annotations) (download)
Mon Mar 11 14:39:22 2024 UTC (3 months, 1 week ago) by niro
File size: 627 byte(s)
-ver bump to 8.2.6-r1
1 # $Id$
2
3 PNAME="boehm-gc"
4 PVER="8.2.6"
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 UP2SEPERATOR="v"
26 UP2DATE="updatecmd https://github.com/ivmai/bdwgc/tags | highesttarball gz"
27
28 src_compile()
29 {
30 cd ${SRCDIR}
31
32 mconfigure --enable-cplusplus || die
33 mmake || die
34 }