vp-build/srcpkgs/gc/template

39 lines
989 B
Bash

# Template file for 'gc'
pkgname=gc
version=7.6.0
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=a14a28b1129be90e55cd6f71127ffc5594e1091d5d54131528c24cd0c03b7d90
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
}
}