2024-12-16 16:32:44 +01:00

59 lines
1.8 KiB
Bash

# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
# Maintainer: Morten Linderud <foxboron@archlinux.org>
# Contributor: Devin Cofer <ranguvar[at]ranguvar[dot]io>
# Contributor: DriverX
# Contributor: Nicolas Quiénot <niQo @ aur>
# Contributor: Martin Schrodt <martin@schrodt.org>
pkgname=nvme-cli
pkgver=2.11
pkgrel=1
pkgdesc="NVM-Express user space tooling for Linux"
arch=(i686 x86_64 powerpc64le powerpc64 powerpc riscv64)
url="https://github.com/linux-nvme/nvme-cli"
license=('GPL')
makedepends=('systemd' 'meson' 'git' 'asciidoc' 'xmlto' 'swig')
depends=('util-linux' 'libsystemd' 'libnvme')
options=(strip)
install=nvme-cli.install
# checkdepends=('python2-nose' 'python-nose')
source=("$pkgname-$pkgver.tar.gz::https://github.com/linux-nvme/${pkgname}/archive/v${pkgver}.tar.gz")
sha256sums=('5e4dc73dbb488c6b1e6ad1c78d0c62b624076fcb0c052bd9039674a1dbd6517b')
build() {
cd "${pkgname}-${pkgver}"
# this uses malloc_usable_size, which is incompatible with fortification level 3
export CFLAGS="${CFLAGS/_FORTIFY_SOURCE=3/_FORTIFY_SOURCE=2}"
export CXXFLAGS="${CXXFLAGS/_FORTIFY_SOURCE=3/_FORTIFY_SOURCE=2}"
meson setup \
--prefix /usr \
--sysconfdir /etc \
--libexecdir lib \
--sbindir bin \
--buildtype plain \
--auto-features enabled \
-D b_lto=true -D b_pie=true \
-D docs=man -D docs-build=true \
-D systemddir=lib/systemd/system/ \
-D udevrulesdir=lib/udev/rules.d \
.build
}
# Tests require a working NVME disk.
# check() {
# cd "${pkgname}-${pkgver}"
# make test
# }
package() {
cd "${pkgname}-${pkgver}"
# this uses malloc_usable_size, which is incompatible with fortification level 3
export CFLAGS="${CFLAGS/_FORTIFY_SOURCE=3/_FORTIFY_SOURCE=2}"
export CXXFLAGS="${CXXFLAGS/_FORTIFY_SOURCE=3/_FORTIFY_SOURCE=2}"
DESTDIR="$pkgdir" meson install -C .build
}