53 lines
1.3 KiB
Bash
53 lines
1.3 KiB
Bash
# Template file for 'elfutils'
|
|
pkgname=elfutils
|
|
version=0.179
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--program-prefix=eu- --disable-debuginfod"
|
|
hostmakedepends="automake libtool pkg-config"
|
|
makedepends="bzip2-devel liblzma-devel zlib-devel"
|
|
short_desc="Utilities to handle ELF object files"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="https://sourceware.org/elfutils/"
|
|
distfiles="https://sourceware.org/${pkgname}/ftp/${version}/${pkgname}-${version}.tar.bz2"
|
|
checksum=25a545566cbacaa37ae6222e58f1c48ea4570f53ba991886e2f5ce96e22a23a2
|
|
|
|
CFLAGS="-Wno-error -Wno-error=null-dereference"
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl) makedepends+=" argp-standalone musl-fts-devel musl-obstack" ;;
|
|
esac
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
# kernel headers in our cross-* packages are too old (need >= 4.1)
|
|
CFLAGS+=" -DBPF_PSEUDO_MAP_FD=1"
|
|
fi
|
|
|
|
post_extract() {
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl) cp ${FILESDIR}/error.h lib
|
|
cp ${FILESDIR}/error.h src
|
|
esac
|
|
}
|
|
|
|
pre_configure() {
|
|
autoreconf -if
|
|
}
|
|
|
|
libelf_package() {
|
|
short_desc+=" - runtime library"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.so*"
|
|
}
|
|
}
|
|
|
|
elfutils-devel_package() {
|
|
depends="libelf>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.a"
|
|
}
|
|
}
|