# Template file for 'libsigsegv'
pkgname=libsigsegv
version=2.14
revision=1
build_style=gnu-configure
configure_args="--enable-shared"
short_desc="Handling page faults in user mode"
maintainer="Martin Riese <grauehaare@gmx.de>"
license="GPL-2.0-or-later"
homepage="https://www.gnu.org/software/libsigsegv/"
distfiles="https://ftpmirror.gnu.org/libsigsegv/libsigsegv-${version}.tar.gz"
checksum=cdac3941803364cf81a908499beb79c200ead60b6b5b40cad124fd1e06caa295

post_configure() {
	case "$XBPS_TARGET_MACHINE" in
	arm*-musl)
		# Avoid double include of signal.h
		vsed -e "s;#define HAVE_SYS_SIGNAL_H 1;#undef HAVE_SYS_SIGNAL_H;" \
			-i ${wrksrc}/config.h
		# struct sigcontext already defined through sigsegv.h
		vsed -e "s;#include <asm/sigcontext.h>;;" \
			-i ${wrksrc}/src/fault-linux-arm-old.h
		;;
	esac
}
libsigsegv-devel_package() {
	short_desc+=" - development files"
	depends="${sourcepkg}>=${version}_${revision}"
	pkg_install() {
		vmove usr/include
		vmove "usr/lib/*.a"
		vmove "usr/lib/*.so"
	}
}
