extra/fsverity-utils to 1.6-1

This commit is contained in:
David Beauchamp 2024-03-23 13:12:10 -04:00
parent 75f39c5e21
commit d175c85d46
3 changed files with 22 additions and 5 deletions

View file

@ -0,0 +1,13 @@
pkgbase = fsverity-utils
pkgdesc = Userspace utilities for fs-verity
pkgver = 1.6
pkgrel = 1
url = https://git.kernel.org/pub/scm/fs/fsverity/fsverity-utils.git
arch = x86_64
license = MIT
makedepends = pandoc
depends = openssl
source = https://git.kernel.org/pub/scm/fs/fsverity/fsverity-utils.git/snapshot/fsverity-utils-1.6.tar.gz
sha256sums = c7aa6b17a8a069224321ff94e46fb91a6426828ca78170a879a52cef2597abb7
pkgname = fsverity-utils

View file

@ -0,0 +1,5 @@
[fsverity-utils]
source = "git"
git = "https://git.kernel.org/pub/scm/fs/fsverity/fsverity-utils.git"
prefix = "v"
use_max_tag = true

View file

@ -2,18 +2,18 @@
# Contributor: tinywrkb <tinywrkb@gmail.com>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - remove makedepend on pandoc, don't run make install-man
# - remove makedepend on pandoc
pkgname=fsverity-utils
pkgver=1.5
pkgrel=3
pkgver=1.6
pkgrel=1
pkgdesc='Userspace utilities for fs-verity'
url='https://git.kernel.org/pub/scm/fs/fsverity/fsverity-utils.git'
license=('MIT')
arch=('x86_64')
depends=('openssl')
source=("${url}/snapshot/${pkgname}-${pkgver}.tar.gz")
sha256sums=('830e38ec081ef8171eb210461cf8bee8a707c7c60f9018a4b567af145a510884')
sha256sums=('c7aa6b17a8a069224321ff94e46fb91a6426828ca78170a879a52cef2597abb7')
build() {
cd ${pkgname}-${pkgver}
@ -23,7 +23,6 @@ build() {
package() {
cd ${pkgname}-${pkgver}
make USE_SHARED_LIB=1 PREFIX=/usr DESTDIR=${pkgdir} install
#make USE_SHARED_LIB=1 PREFIX=/usr DESTDIR=${pkgdir} install-man
install -Dm644 LICENSE -t ${pkgdir}/usr/share/licenses/${pkgname}/
install -Dm644 README.md -t ${pkgdir}/usr/share/doc/${pkgname}/
}