63 lines
1.5 KiB
Bash
63 lines
1.5 KiB
Bash
# Template file for 'ndctl'
|
|
pkgname=ndctl
|
|
version=68
|
|
revision=2
|
|
build_style=gnu-configure
|
|
configure_args="--disable-docs --without-systemd"
|
|
hostmakedepends="automake libtool pkg-config xmlto"
|
|
makedepends="eudev-libudev-devel json-c-devel libkmod-devel libuuid-devel
|
|
bash-completion keyutils-devel"
|
|
short_desc="Utility library for managing libnvdimm"
|
|
maintainer="Anthony Iliopoulos <ailiop@altatus.com>"
|
|
license="LGPL-2.1-only, GPL-2.0-only"
|
|
homepage="https://github.com/pmem/ndctl"
|
|
distfiles="https://github.com/pmem/ndctl/archive/v${version}.tar.gz"
|
|
checksum=27a4e09ab8f8d8aaa5e1af03f649c8b10f50be959b8dbbffcf50e5396ef0226f
|
|
conf_files="/etc/ndctl/monitor.conf"
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
ppc|ppc-musl) broken="broken on ppc" ;;
|
|
esac
|
|
|
|
pre_configure() {
|
|
./autogen.sh
|
|
}
|
|
|
|
post_install() {
|
|
vmkdir usr/lib/modprobe.d
|
|
mv ${DESTDIR}/{etc,usr/lib}/modprobe.d/nvdimm-security.conf
|
|
}
|
|
|
|
libndctl_package() {
|
|
short_desc+=" - ndctl library"
|
|
pkg_install() {
|
|
vmove "usr/lib/libndctl.so.*"
|
|
}
|
|
}
|
|
|
|
libdaxctl_package() {
|
|
short_desc+=" - daxctl library"
|
|
pkg_install() {
|
|
vmove "usr/lib/libdaxctl.so.*"
|
|
}
|
|
}
|
|
|
|
libndctl-devel_package() {
|
|
depends="libndctl-${version}_${revision}"
|
|
short_desc+=" - ndctl development files"
|
|
pkg_install() {
|
|
vmove usr/include/ndctl
|
|
vmove usr/lib/pkgconfig/libndctl.pc
|
|
vmove usr/lib/libndctl.so
|
|
}
|
|
}
|
|
|
|
libdaxctl-devel_package() {
|
|
depends="libdaxctl-${version}_${revision}"
|
|
short_desc+=" - daxctl development files"
|
|
pkg_install() {
|
|
vmove usr/include/daxctl
|
|
vmove usr/lib/pkgconfig/libdaxctl.pc
|
|
vmove usr/lib/libdaxctl.so
|
|
}
|
|
}
|