summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c94e5c630cc268effdce851ee9c335e3362c56a4 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Maintainer: Gonzalo Exequiel Pedone <hipersayan DOT x AT gmail DOT com>
# Contributor: Jonas Witschel <diabonas@archlinux.org>

_android_arch=x86

pkgname=android-${_android_arch}-libtpms
pkgver=0.9.6
pkgrel=1
arch=('any')
pkgdesc="Library providing a software emulation of a Trusted Platform Module (TPM 1.2 and TPM 2.0) (Android ${_android_arch})"
url='https://github.com/stefanberger/libtpms'
license=('BSD')
depends=("android-${_android_arch}-openssl")
makedepends=('android-configure')
options=(!strip !buildflags staticlibs !emptydirs)
source=("https://github.com/stefanberger/libtpms/archive/refs/tags/v${pkgver}.tar.gz")
md5sums=('c922a80cb1a098e6f9b2671c0044a388')

prepare() {
    cd "${srcdir}/libtpms-$pkgver"
    source android-env ${_android_arch}

    autoreconf --install --force
}

build() {
    cd "${srcdir}/libtpms-$pkgver"
    source android-env ${_android_arch}

    android-${_android_arch}-configure \
        --with-openssl \
        --with-tpm2
    make $MAKEFLAGS
}

package() {
    cd "${srcdir}/libtpms-$pkgver"
    source android-env ${_android_arch}

    make DESTDIR="$pkgdir" install
    rm -rf "${pkgdir}/${ANDROID_PREFIX_SHARE}"
    ${ANDROID_STRIP} -g --strip-unneeded "${pkgdir}"/${ANDROID_PREFIX_LIB}/*.so
    ${ANDROID_STRIP} -g "$pkgdir"/${ANDROID_PREFIX_LIB}/*.a
}