void-packages/srcpkgs/libdwarf/template
2019-01-24 10:59:14 -02:00

47 lines
1.3 KiB
Bash
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Template file for 'libdwarf'
pkgname=libdwarf
version=20190110
revision=1
build_style=gnu-configure
configure_args="--prefix=/usr --enable-shared"
makedepends="elfutils-devel"
short_desc="DWARF Debugging Information Format Library"
maintainer="John Regan <john@jrjrtech.com>"
license="LGPL-2.1-only"
homepage="https://www.prevanders.net/dwarf.html"
distfiles="https://prevanders.net/${pkgname}-${version}.tar.gz"
checksum=4ba9b7eb70e540b1a0e169a2b06ec1476f2197ba5bfa2a8cc92702005c6d311c
if [ "$CROSS_BUILD" ]; then
hostmakedepends+=" elfutils-devel"
make_cmd="make HOSTCC=cc HOSTCFLAGS=-I./ HOSTLDFLAGS="
pre_build() {
# Makefile doesnt use $HOSTLDFLAGS when using $HOSTCC
sed -i -e 's|\$(HOSTCC) \$(HOSTCFLAGS) \$(LDFLAGS)|\$(HOSTCC) \$(HOSTCFLAGS) \$(HOSTLDFLAGS)|' Makefile
}
fi
post_install() {
rm -rf ${PKGDESTDIR}/usr/share/libdwarf/libdwarf-devel
}
libdwarf-devel_package() {
short_desc+=" - development files"
depends="${sourcepkg}>=${version}_${revision}"
pkg_install() {
vmove usr/include
vmove "usr/lib/*.so"
vmove "usr/lib/*.a"
}
}
libdwarf-doc_package() {
noarch=yes
short_desc+=" - documentation"
pkg_install() {
install -dm755 $PKGDESTDIR/usr/share/doc/${pkgname}
install -m644 README NEWS libdwarf/*.pdf $PKGDESTDIR/usr/share/doc/${pkgname}
}
}