blob: 8dca3c1ed91f04641b0abd47256a513527871b29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Maintainer: Alex Henrie <alexhenrie24@gmail.com>
pkgname=ima-evm-utils
pkgver=1.6.2
pkgrel=1
pkgdesc='Produce and verify digital signatures which are used by Linux kernel integrity subsystem'
arch=('x86_64')
url='https://github.com/mimizohar/ima-evm-utils'
license=('GPL')
depends=('docbook-xml' 'ibm-tpm2-tss' 'openssl' 'tpm2-tss')
makedepends=('asciidoc')
source=("git+https://github.com/mimizohar/ima-evm-utils.git#tag=v$pkgver")
sha256sums=('SKIP')
build() {
cd "$pkgname"
./autogen.sh
./configure --prefix=/usr
make
}
check() {
cd "$pkgname"
make -k check
}
package() {
cd "$pkgname"
make DESTDIR="$pkgdir/" install
}
|