opt/boehm-gc/Pkgfile
2014-06-15 02:00:30 +02:00

29 lines
793 B
Plaintext

# Description: Garbage collection and memory leak detection for C and C++
# URL: http://www.hpl.hp.com/personal/Hans_Boehm/gc/
# Maintainer: Thomas Penteker, tek at serverop dot de
# Packager: Han Boetes, han at mijncomputer dot dl
name=boehm-gc
version=7.4.2
release=1
source=(http://www.hboehm.info/gc/gc_source/gc-${version}.tar.gz
https://github.com/ivmai/libatomic_ops/archive/libatomic_ops-${version//\./_}.tar.gz)
build () {
cd gc-$version
ln -s ../libatomic_ops-libatomic_ops-${version//\./_} libatomic_ops
./configure \
--prefix=/usr \
--enable-threads=pthreads \
--enable-static \
--enable-shared
make
make DESTDIR=$PKG install
install -D -m 644 doc/gc.man $PKG/usr/man/man3/gc.3
rm -rf $PKG/usr/share
}