2020-06-14 22:08:21 +00:00
|
|
|
# Description: Utility library for managing the libnvdimm (non-volatile memory device) sub-system in the Linux kernel
|
|
|
|
# URL: https://github.com/pmem/ndctl
|
2020-07-10 11:39:17 +00:00
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2022-01-03 11:20:40 +01:00
|
|
|
# Depends on: iniparser json-c keyutils
|
2020-06-14 22:08:21 +00:00
|
|
|
|
|
|
|
name=ndctl
|
2022-01-07 12:41:13 +01:00
|
|
|
version=72.1
|
2020-06-14 22:08:21 +00:00
|
|
|
release=1
|
2022-01-07 12:41:13 +01:00
|
|
|
source=(https://github.com/pmem/ndctl/archive/v$version/$name-$version.tar.gz)
|
2020-06-14 22:08:21 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
2022-01-03 11:20:40 +01:00
|
|
|
|
2020-06-14 22:08:21 +00:00
|
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--with-systemd=no \
|
2021-01-28 10:23:40 +00:00
|
|
|
--without-bash \
|
2020-06-14 22:08:21 +00:00
|
|
|
--disable-docs
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|