mirror of
https://github.com/void-linux/void-packages.git
synced 2025-07-30 17:33:03 +02:00
gc: update to 7.2.
This commit is contained in:
parent
d34d3a6f53
commit
293e22b7b1
3 changed files with 9 additions and 12 deletions
|
@ -5,9 +5,10 @@ long_desc="${long_desc}
|
||||||
|
|
||||||
This package contains files for development, headers, static libs, etc."
|
This package contains files for development, headers, static libs, etc."
|
||||||
|
|
||||||
do_install()
|
Add_dependency run gc ">=$version"
|
||||||
{
|
|
||||||
mkdir -p ${DESTDIR}/usr/lib
|
do_install() {
|
||||||
mv ${SRCPKGDESTDIR}/usr/{include,share} ${DESTDIR}/usr
|
vmove usr/include usr
|
||||||
mv ${SRCPKGDESTDIR}/usr/lib/*.a ${DESTDIR}/usr/lib
|
vmove usr/share usr
|
||||||
|
vmove "usr/lib/*.a" usr/lib
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
libpthread.so.0
|
libpthread.so.0
|
||||||
libdl.so.2
|
libdl.so.2
|
||||||
libgcc_s.so.1
|
|
||||||
libc.so.6
|
libc.so.6
|
||||||
ld-linux-x86-64.so.2
|
ld-linux-x86-64.so.2
|
||||||
ld-linux.so.2
|
ld-linux.so.2
|
||||||
|
|
|
@ -1,22 +1,19 @@
|
||||||
# Template file for 'gc'
|
# Template file for 'gc'
|
||||||
pkgname=gc
|
pkgname=gc
|
||||||
version=7.1
|
version=7.2
|
||||||
revision=1
|
|
||||||
distfiles="http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-$version.tar.gz"
|
distfiles="http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-$version.tar.gz"
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
short_desc="A garbage collector for C and C++"
|
short_desc="A garbage collector for C and C++"
|
||||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||||
homepage="http://www.hpl.hp.com/personal/Hans_Boehm/gc/"
|
homepage="http://www.hpl.hp.com/personal/Hans_Boehm/gc/"
|
||||||
license="GPL-2"
|
license="GPL-2"
|
||||||
checksum=e3cef6028fe3efe7de3bcf4107c880eae50b3ee79841450d885467c09bcebf30
|
checksum=78281a7e183e599368282e05b3818ea21ead246337dad3badceb4ea0cd6c6650
|
||||||
long_desc="
|
long_desc="
|
||||||
The Boehm-Demers-Weiser conservative garbage collector can be used as a
|
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
|
garbage collecting replacement for C malloc or C++ new. It allows you to
|
||||||
allocate memory basically as you normally would, without explicitly
|
allocate memory basically as you normally would, without explicitly
|
||||||
deallocating memory that is no longer useful. The collector automatically
|
deallocating memory that is no longer useful. The collector automatically
|
||||||
recycles memory when it determines that it can no longer be otherwise
|
recycles memory when it determines that it can no longer be otherwise
|
||||||
accessed.
|
accessed."
|
||||||
"
|
|
||||||
|
|
||||||
subpackages="gc-devel"
|
subpackages="gc-devel"
|
||||||
Add_dependency build glibc-devel
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue