contrib/ndctl/Pkgfile

23 lines
614 B
Plaintext
Raw Normal View History

2020-06-15 00:08:21 +02: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 13:39:17 +02:00
# Maintainer: Tim Biermann, tbier at posteo dot de
2020-06-15 00:08:21 +02:00
# Depends on: json-c keyutils
name=ndctl
version=68
release=1
source=(https://github.com/pmem/ndctl/archive/v$version/$name-$version.tar.gz)
build() {
cd $name-$version
NOCONFIGURE=1 ./autogen.sh
sed '13944s/yes/no/' -i configure
sed '13961s/yes/no/' -i configure
./configure --prefix=/usr \
--sysconfdir=/etc \
--with-systemd=no \
--disable-docs
make
make DESTDIR=$PKG install
}