Skip to content

Commit

Permalink
fix(main/crowbook): Switch from openssl-1.1 to openssl
Browse files Browse the repository at this point in the history
  • Loading branch information
fornwall committed May 18, 2024
1 parent 127fae1 commit b35d6f3
Showing 1 changed file with 2 additions and 13 deletions.
15 changes: 2 additions & 13 deletions packages/crowbook/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,15 @@ TERMUX_PKG_DESCRIPTION="Allows you to write a book in Markdown without worrying
TERMUX_PKG_LICENSE="LGPL-2.1"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="0.16.1"
TERMUX_PKG_REVISION=1
TERMUX_PKG_SRCURL=https://github.com/lise-henry/crowbook/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=2e49a10f1b14666d4f740e9a22a588d44b137c3fca0932afc50ded0280450311
TERMUX_PKG_DEPENDS="openssl-1.1"
TERMUX_PKG_DEPENDS="openssl"
TERMUX_PKG_BUILD_IN_SRC=true

# https://github.com/termux/termux-packages/issues/12824
TERMUX_RUST_VERSION=1.73.0

termux_step_pre_configure() {
# openssl-sys supports OpenSSL 3 in >= 0.9.69
# We can switch to OpenSSL 3 once new version of crowbook is released
export OPENSSL_INCLUDE_DIR=$TERMUX_PREFIX/include/openssl-1.1
export OPENSSL_LIB_DIR=$TERMUX_PREFIX/lib/openssl-1.1
CFLAGS="-I$TERMUX_PREFIX/include/openssl-1.1 $CFLAGS"
CPPFLAGS="-I$TERMUX_PREFIX/include/openssl-1.1 $CPPFLAGS"
CXXFLAGS="-I$TERMUX_PREFIX/include/openssl-1.1 $CXXFLAGS"
LDFLAGS="-L$TERMUX_PREFIX/lib/openssl-1.1 -Wl,-rpath=$TERMUX_PREFIX/lib/openssl-1.1 $LDFLAGS"
RUSTFLAGS+=" -C link-arg=-Wl,-rpath=$TERMUX_PREFIX/lib/openssl-1.1"
}

termux_step_make() {
termux_setup_rust
cargo build --jobs $TERMUX_MAKE_PROCESSES --target $CARGO_TARGET_NAME --release
Expand Down

0 comments on commit b35d6f3

Please sign in to comment.