contrib/tpm2-tss/Pkgfile

24 lines
620 B
Plaintext
Raw Normal View History

# Description: Implementation of the TCG Trusted Platform Module 2.0 Software Stack (TSS2)
# URL: https://github.com/tpm2-software/tpm2-tss
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: json-c cmocka libtpms
name=tpm2-tss
2024-04-26 23:52:02 +02:00
version=4.1.0
release=1
source=(https://github.com/tpm2-software/tpm2-tss/releases/download/$version/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--with-runstatedir=/run \
--with-udevrulesprefix=60-
make
make DESTDIR=$PKG install
rm -rf $PKG/etc/{sysusers.d,tmpfiles.d}
}