37 lines
1.0 KiB
Bash
37 lines
1.0 KiB
Bash
# Template file for 'libexecinfo'
|
|
pkgname=libexecinfo
|
|
version=1.1
|
|
revision=1
|
|
build_style=gnu-makefile
|
|
short_desc="A quick-n-dirty BSD licensed clone of the GNU libc backtrace facility"
|
|
maintainer="John <johnz@posteo.net>"
|
|
license="BSD-2"
|
|
homepage="http://www.freshports.org/devel/libexecinfo"
|
|
distfiles="http://distcache.freebsd.org/local-distfiles/itetcu/libexecinfo-${version}.tar.bz2"
|
|
checksum=c9a21913e7fdac8ef6b33250b167aa1fc0a7b8a175145e26913a4c19d8a59b1f
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl) ;;
|
|
*) broken="Only for musl libc" ;;
|
|
esac
|
|
|
|
do_install() {
|
|
vinstall execinfo.h 644 usr/include
|
|
vinstall stacktraverse.h 644 usr/include
|
|
vinstall libexecinfo.a 755 usr/lib
|
|
vinstall libexecinfo.so.1 755 usr/lib
|
|
ln -s /usr/lib/libexecinfo.so.1 ${DESTDIR}/usr/lib/libexecinfo.so
|
|
head -28 execinfo.c > LICENSE
|
|
vlicense LICENSE
|
|
}
|
|
|
|
libexecinfo-devel_package() {
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/*.so
|
|
vmove usr/lib/*.a
|
|
}
|
|
}
|