contrib/ndctl/Pkgfile
2022-01-03 13:31:20 +01:00

26 lines
618 B
Plaintext

# Description: Utility library for managing the libnvdimm (non-volatile memory device) sub-system in the Linux kernel
# URL: https://github.com/pmem/ndctl
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: iniparser json-c keyutils
name=ndctl
version=72
release=1
source=(https://github.com/pmem/ndctl/archive/v$version/$name-$version.tar.gz
186.patch)
build() {
cd $name-$version
patch -Np1 -i $SRC/186.patch
NOCONFIGURE=1 ./autogen.sh
./configure --prefix=/usr \
--sysconfdir=/etc \
--with-systemd=no \
--without-bash \
--disable-docs
make
make DESTDIR=$PKG install
}