xfce4/ndctl/Pkgfile
2020-04-03 21:11:41 +02:00

27 lines
593 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
# Packager: Matt Housh, jaeger at crux dot ninja
# Maintainer: jolupa, jlpavon at me dot coom
# Depends on: json-c
name=ndctl
version=68
release=1
source=(https://github.com/pmem/$name/archive/v$version.tar.gz)
build() {
cd $name-$version
NOCONFIGURE=1
./autogen.sh
./configure \
--prefix=/usr \
--disable-docs \
--with-bash=no \
--with-systemd=no \
--with-keyutils=no
make
make DESTDIR=$PKG install
}