0
0
mirror of https://github.com/termux/termux-packages.git synced 2024-12-13 01:50:33 +00:00
Henrik Grimler 9e90d1b31a
tree-wide: rename TERMUX_MAKE_PROCESSES to TERMUX_PKG_MAKE_PROCESSES
Some packages have issues with parallel builds and need to set
TERMUX_MAKE_PROCESSES=1. All other build variables that package
recipes set are prefixed with TERMUX_PKG, use that for MAKE_PROCESSES
as well for consistency.

%ci:no-build
2024-06-16 11:16:22 +02:00

38 lines
1.1 KiB
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/aeolwyr/tergent
TERMUX_PKG_DESCRIPTION="A cryptoki/PKCS#11 library for Termux that uses Android Keystore as its backend"
TERMUX_PKG_LICENSE="GPL-3.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=1.0.0
TERMUX_PKG_REVISION=4
# Build from specific revision until patches are merged upstream, or
# we decide to maintain a fork
_COMMIT=831e300e3d75a9618963bbefbaad49bf37e2cf3c
TERMUX_PKG_SRCURL=https://github.com/termux/tergent/archive/${_COMMIT}.tar.gz
TERMUX_PKG_SHA256=8979504a0e705fca35a6ae81ba1665c5bafebe218008ee50b6dc4f8a8d611cec
TERMUX_PKG_AUTO_UPDATE=false
TERMUX_PKG_DEPENDS="termux-api"
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_pre_configure() {
termux_setup_rust
}
termux_step_make() {
local BUILD_TYPE=
if [ $TERMUX_DEBUG_BUILD = false ]; then
BUILD_TYPE=--release
fi
cargo build --jobs $TERMUX_PKG_MAKE_PROCESSES \
--target $CARGO_TARGET_NAME ${BUILD_TYPE}
}
termux_step_make_install() {
local BUILD_TYPE=release
if [ $TERMUX_DEBUG_BUILD = true ]; then
BUILD_TYPE=debug
fi
install -Dm600 -t $TERMUX_PREFIX/lib \
target/${CARGO_TARGET_NAME}/${BUILD_TYPE}/libtergent.so
}