38 lines
989 B
Bash
38 lines
989 B
Bash
# Template file for 'gc'
|
|
pkgname=gc
|
|
version=7.6.2
|
|
revision=1
|
|
build_style=gnu-configure
|
|
hostmakedepends="automake pkg-config libtool"
|
|
makedepends="libatomic_ops-devel"
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl)
|
|
CFLAGS='-D_GNU_SOURCE -DNO_GETCONTEXT -DSEARCH_FOR_DATA_START -DUSE_MMAP -DHAVE_DL_ITERATE_PHDR'
|
|
esac
|
|
short_desc="A garbage collector for C and C++"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
homepage="http://www.hboehm.info/gc/"
|
|
license="GPL-2"
|
|
distfiles="http://www.hboehm.info/gc/gc_source/gc-${version}.tar.gz"
|
|
checksum=bd112005563d787675163b5afff02c364fc8deb13a99c03f4e80fdf6608ad41e
|
|
|
|
post_extract() {
|
|
sed -i '1i#include <sys/select.h>' pthread_stop_world.c
|
|
sed -i '1i#include <time.h>' pthread_stop_world.c
|
|
}
|
|
|
|
pre_configure() {
|
|
autoreconf -fi
|
|
}
|
|
|
|
gc-devel_package() {
|
|
depends="gc>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/share
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/lib/pkgconfig
|
|
}
|
|
}
|