blob: c83d81db6b43d1d3c770be8c3437b11b1ea6fba2 (
plain)
1 # Description: Garbage collection and memory leak detection for C and C++
2 # URL: http://www.hpl.hp.com/personal/Hans_Boehm/gc/
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Packager: Han Boetes, han at mijncomputer dot dl
5
6 name=boehm-gc
7 version=7.2e
8 release=1
9 source=(http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-${version}.tar.gz)
10
11 build () {
12 cd gc-7.2
13
14 ./configure \
15 --prefix=/usr \
16 --enable-threads=pthreads \
17 --enable-static \
18 --enable-shared
19 make
20 make DESTDIR=$PKG install
21
22 install -D -m 644 doc/gc.man $PKG/usr/man/man3/gc.3
23
24 rm -rf $PKG/usr/share
25 }
|