gc: update to 7.2.

This commit is contained in:
Juan RP 2012-05-18 17:52:05 +02:00
parent d34d3a6f53
commit 293e22b7b1
3 changed files with 9 additions and 12 deletions

View file

@ -5,9 +5,10 @@ long_desc="${long_desc}
This package contains files for development, headers, static libs, etc."
do_install()
{
mkdir -p ${DESTDIR}/usr/lib
mv ${SRCPKGDESTDIR}/usr/{include,share} ${DESTDIR}/usr
mv ${SRCPKGDESTDIR}/usr/lib/*.a ${DESTDIR}/usr/lib
Add_dependency run gc ">=$version"
do_install() {
vmove usr/include usr
vmove usr/share usr
vmove "usr/lib/*.a" usr/lib
}

View file

@ -1,6 +1,5 @@
libpthread.so.0
libdl.so.2
libgcc_s.so.1
libc.so.6
ld-linux-x86-64.so.2
ld-linux.so.2

View file

@ -1,22 +1,19 @@
# Template file for 'gc'
pkgname=gc
version=7.1
revision=1
version=7.2
distfiles="http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-$version.tar.gz"
build_style=gnu-configure
short_desc="A garbage collector for C and C++"
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://www.hpl.hp.com/personal/Hans_Boehm/gc/"
license="GPL-2"
checksum=e3cef6028fe3efe7de3bcf4107c880eae50b3ee79841450d885467c09bcebf30
checksum=78281a7e183e599368282e05b3818ea21ead246337dad3badceb4ea0cd6c6650
long_desc="
The Boehm-Demers-Weiser conservative garbage collector can be used as a
garbage collecting replacement for C malloc or C++ new. It allows you to
allocate memory basically as you normally would, without explicitly
deallocating memory that is no longer useful. The collector automatically
recycles memory when it determines that it can no longer be otherwise
accessed.
"
accessed."
subpackages="gc-devel"
Add_dependency build glibc-devel