mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-02-02 18:52:19 +01:00
27 lines
593 B
Plaintext
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
|
|
}
|