boehm-gc: adopted

This commit is contained in:
Simon Gloner 2006-10-02 09:47:51 +00:00
parent b719b154bb
commit 37605e0037

View File

@ -1,8 +1,7 @@
# Description: Garbage collection and memory leak detection for C and C++
# URL: http://www.hpl.hp.com/personal/Hans_Boehm/gc/
# Maintainer: Jukka Heino, jukka dot heino at gmail dot com
# Maintainer: Simon Gloßner, viper at hometux dot de
# Packager: Han Boetes, han at mijncomputer dot dl
# Depends on:
name=boehm-gc
version=6.8
@ -10,7 +9,8 @@ release=1
source=(http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc${version}.tar.gz)
build () {
cd gc$version
cd gc${version}
./configure \
--prefix=/usr \
--enable-threads=pthreads \
@ -18,6 +18,8 @@ build () {
--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
}