You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1014 B
31 lines
1014 B
# Maintainer: Felix Yan <felixonmars@archlinux.org> |
|
|
|
pkgname=ndctl |
|
pkgver=73 |
|
pkgrel=1 |
|
pkgdesc='Utility library for managing the libnvdimm (non-volatile memory device) sub-system in the Linux kernel' |
|
arch=('x86_64') |
|
url="https://github.com/pmem/ndctl" |
|
license=('LGPL') |
|
depends=('iniparser' 'json-c' 'keyutils' 'kmod' 'libudev.so' 'util-linux-libs') |
|
makedepends=('asciidoctor' 'bash-completion' 'meson' 'udev' 'xmlto') |
|
source=("https://github.com/pmem/ndctl/archive/v$pkgver/$pkgname-$pkgver.tar.gz") |
|
sha512sums=('a52a1fb655f044e5cd48b95b3abd89b4f6a991d6439c02e66da6b55947b8a08c279fec873def0b5a18a4e0b670d40e246c333b619fb62f0c6808357d15d847a5') |
|
|
|
prepare() { |
|
# fix location of modprobe.d conf |
|
sed -i "s|^modprobedatadir =.*|modprobedatadir = '/usr/lib/modprobe.d/'|" $pkgname-$pkgver/contrib/meson.build |
|
} |
|
|
|
build() { |
|
artix-meson $pkgname-$pkgver build -Dsystemd=disabled |
|
meson compile -C build |
|
} |
|
|
|
check() { |
|
meson test -C build --print-errorlogs |
|
} |
|
|
|
package() { |
|
meson install -C build --destdir "$pkgdir" |
|
}
|
|
|