123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- set -e
- program=gc
- version=8.0.6
- release=1
- pkgcategory=devel
- tarname=${program}-${version}.tar.gz
- fetch=https://github.com/ivmai/bdwgc/releases/download/v${version}/$tarname
- description="
- A garbage collector for C and C++.
- The gc package contains the Boehm-Demers-Weiser conservative garbage
- collector, which can be used as a garbage collecting replacement for
- the C malloc function or C++ new operator. It allows you to allocate
- memory basically as you normally would, without explicitly deallocating
- memory that is no longer useful. The collector automatically recycles
- memory when it determines that it can no longer be otherwise accessed.
- The collector is also used by a number of programming language
- implementations that either use C as intermediate code, want to
- facilitate easier interoperation with C libraries, or just prefer the
- simple collector interface. Alternatively, the garbage collector may
- be used as a leak detector for C or C++ programs, though that is not
- its primary goal.
- "
- homepage=https://www.hboehm.info/gc/
- license=Custom
- docs="AUTHORS ChangeLog"
- docsdir="${docdir}/${program}-${version}"
- build()
- {
- unpack "${tardir}/$tarname"
- cd "$srcdir"
-
- chmod -R u+w,go-w,a+rX-s .
- ./configure CPPFLAGS="$QICPPFLAGS" \
- CFLAGS="$QICFLAGS" CXXFLAGS="$QICXXFLAGS" LDFLAGS="$QILDFLAGS" \
- $configure_args \
- --libdir=/usr/lib${libSuffix} \
- --mandir=$mandir \
- --docdir=$docsdir \
- --enable-cplusplus \
- --enable-static=no \
- --enable-shared=yes \
- --enable-threads=posix \
- --with-libatomic-ops=yes \
- --build="$(gcc -dumpmachine)"
- make -j${jobs} V=1
- make -j${jobs} DESTDIR="$destdir" install-strip
-
- if test -d "${destdir}/$mandir"
- then
- (
- cd "${destdir}/$mandir"
- find . -type f -exec lzip -9 {} +
- find . -type l | while read -r file
- do
- ln -sf "$(readlink -- "$file").lz" "${file}.lz"
- rm -- "$file"
- done
- )
- fi
-
- mkdir -p "${destdir}/$docsdir"
- cp -p $docs "${destdir}/$docsdir"
- }
|