milis/talimatname/genel/boehm-gc/talimat

32 lines
739 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Description: C ve C++ için garbage collection ve bellek taşması (memory leak) dedektörü.
# URL: http://www.hboehm.info/
# Packager: berlius at nutyx dot com
# Depends on:
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 $SRC/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
}