0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-06-03 06:05:15 +00:00
Files
Twaik Yont 99ca84e7b9 chore(main/libsophia): force disable auto updates [no ci]
This is needed to avoid auto-updater script warnings.
Also updating package requires fixing package-local termux_step_make_install actions.
2023-10-11 11:02:06 +03:00

16 lines
591 B
Bash

TERMUX_PKG_HOMEPAGE=http://sophia.systems/
TERMUX_PKG_DESCRIPTION="Advanced transactional MVCC key-value/row storage library"
TERMUX_PKG_LICENSE="BSD 2-Clause"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=2.2
TERMUX_PKG_SRCURL=git+https://github.com/pmwkaa/sophia
TERMUX_PKG_AUTO_UPDATE=false
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_make_install() {
install -Dm600 -t $TERMUX_PREFIX/lib libsophia.a
install -Dm600 -t $TERMUX_PREFIX/lib libsophia.so.2.2.0
ln -sfT libsophia.so.2.2.0 $TERMUX_PREFIX/lib/libsophia.so.2.2
ln -sfT libsophia.so.2.2.0 $TERMUX_PREFIX/lib/libsophia.so
}