summaryrefslogtreecommitdiff
path: root/boehm-gc/Pkgfile
blob: 99c206ace880880c8cba88f67a3b9e128eb486ed (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: Jukka Heino, jukka dot heino at gmail dot com
    4 # Packager: Han Boetes, han at mijncomputer dot dl
    5 # Depends on:
    6 
    7 name=boehm-gc
    8 version=6.7
    9 release=1
   10 source=(http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc${version}.tar.gz)
   11 
   12 build () {
   13     cd gc$version
   14     ./configure \
   15         --prefix=/usr \
   16         --enable-threads=pthreads \
   17         --enable-static \
   18         --enable-shared
   19     make
   20     make DESTDIR=$PKG install
   21     install -D -m 644 doc/gc.man $PKG/usr/man/man3/gc.3
   22     rm -rf $PKG/usr/share
   23 }

Generated by cgit