opt/boehm-gc/Pkgfile

24 lines
654 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Garbage collection and memory leak detection for C and C++
# URL: http://www.hpl.hp.com/personal/Hans_Boehm/gc/
2006-04-13 06:29:47 +02:00
# Maintainer: Jukka Heino, jukka dot heino at gmail dot com
# Packager: Han Boetes, han at mijncomputer dot dl
2006-02-23 16:26:10 +01:00
# Depends on:
name=boehm-gc
2006-07-16 13:58:45 +02:00
version=6.8
2006-02-23 16:26:10 +01:00
release=1
source=(http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc${version}.tar.gz)
build () {
cd gc$version
./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
}