summaryrefslogtreecommitdiff
path: root/ndctl/Pkgfile
blob: f3927fc699eb2470aa8abf0d74d313f71b026e62 (plain)
    1 # Description: Utility library for managing the libnvdimm (non-volatile memory device) sub-system in the Linux kernel
    2 # URL: https://github.com/pmem/ndctl
    3 # Maintainer: Tim Biermann, tbier at posteo dot de
    4 # Depends on: json-c keyutils
    5 
    6 name=ndctl
    7 version=70.1
    8 release=1
    9 source=(https://github.com/pmem/ndctl/archive/v$version/$name-$version.tar.gz)
   10 
   11 build() {
   12   cd $name-$version
   13   NOCONFIGURE=1 ./autogen.sh
   14   sed '13944s/yes/no/' -i configure
   15   sed '13961s/yes/no/' -i configure
   16   ./configure --prefix=/usr \
   17     --sysconfdir=/etc \
   18     --with-systemd=no \
   19     --disable-docs
   20   make
   21   make DESTDIR=$PKG install
   22 }

Generated by cgit