49 lines
1.3 KiB
Bash
49 lines
1.3 KiB
Bash
# Template file for 'libabigail'
|
|
pkgname=libabigail
|
|
version=1.4
|
|
revision=2
|
|
build_style=gnu-configure
|
|
hostmakedepends="automake cpio dpkg libtool pkg-config python3-Sphinx"
|
|
makedepends="elfutils-devel libxml2-devel"
|
|
configure_args="--enable-cxx11=yes"
|
|
short_desc="ABI Generic Analysis and Instrumentation Library"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="LGPL-3.0-or-later"
|
|
homepage="https://www.sourceware.org/libabigail/"
|
|
distfiles="http://mirrors.kernel.org/sourceware/${pkgname}/${pkgname}-${version}.tar.gz"
|
|
checksum=27914ea1fda0af3fe8678101abea4733b9f7e7b6b5c576536b7bfa4e8189289f
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl) makedepends+=" musl-fts-devel"; LDFLAGS="-lfts" ;;
|
|
esac
|
|
|
|
pre_configure() {
|
|
libtoolize -f
|
|
autoreconf -fi
|
|
}
|
|
post_build() {
|
|
make -C doc/manuals man info
|
|
}
|
|
post_install() {
|
|
make -C doc/manuals install-man-and-info-doc DESTDIR="$DESTDIR"
|
|
}
|
|
libabigail-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/*.so
|
|
vmove usr/lib/*.a
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/share/aclocal
|
|
}
|
|
}
|
|
libabigail-tools_package() {
|
|
short_desc+=" - tools"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/bin
|
|
vmove usr/share/man
|
|
vmove usr/share/info
|
|
}
|
|
}
|