mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
added community/fsverity-utils
This commit is contained in:
parent
cf6531a9e1
commit
0b7a43a5f5
1 changed files with 29 additions and 0 deletions
29
community/fsverity-utils/PKGBUILD
Normal file
29
community/fsverity-utils/PKGBUILD
Normal file
|
@ -0,0 +1,29 @@
|
|||
# Maintainer: Morten Linderud <foxboron@archlinux.org>
|
||||
# Contributor: tinywrkb <tinywrkb@gmail.com>
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - remove makedepend on pandoc, don't run make install-man
|
||||
|
||||
pkgname=fsverity-utils
|
||||
pkgver=1.5
|
||||
pkgrel=1
|
||||
pkgdesc='Userspace utilities for fs-verity'
|
||||
url='https://git.kernel.org/pub/scm/linux/kernel/git/ebiggers/fsverity-utils.git'
|
||||
license=('MIT')
|
||||
arch=('x86_64')
|
||||
depends=('openssl')
|
||||
source=("${url}/snapshot/${pkgname}-${pkgver}.tar.gz")
|
||||
sha256sums=('830e38ec081ef8171eb210461cf8bee8a707c7c60f9018a4b567af145a510884')
|
||||
|
||||
build() {
|
||||
cd ${pkgname}-${pkgver}
|
||||
make USE_SHARED_LIB=1 PREFIX=/usr DESTDIR=${pkgdir}
|
||||
}
|
||||
|
||||
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}/
|
||||
}
|
Loading…
Reference in a new issue