mirror of
https://github.com/termux/termux-packages.git
synced 2024-12-04 18:45:52 +00:00
7386464a08
Fixes #21578.
32 lines
1.3 KiB
Bash
32 lines
1.3 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/Aloxaf/silicon
|
|
TERMUX_PKG_DESCRIPTION="Silicon is an alternative to Carbon implemented in Rust"
|
|
TERMUX_PKG_LICENSE="MIT"
|
|
TERMUX_PKG_MAINTAINER="Yaksh Bariya <thunder-coding@termux.dev>"
|
|
TERMUX_PKG_VERSION="0.5.3"
|
|
TERMUX_PKG_SRCURL=https://github.com/Aloxaf/silicon/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=56e7f3be4118320b64e37a174cc2294484e27b019c59908c0a96680a5ae3ad58
|
|
TERMUX_PKG_DEPENDS="fontconfig, harfbuzz"
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
|
|
termux_step_pre_configure() {
|
|
termux_setup_cmake
|
|
termux_setup_rust
|
|
|
|
# Dummy CMake toolchain file to workaround build error:
|
|
# error: failed to run custom build command for `freetype-sys v0.13.1`
|
|
# ...
|
|
# CMake Error at /home/builder/.termux-build/_cache/cmake-3.27.5/share/cmake-3.27/Modules/Platform/Android-Determine.cmake:217 (message):
|
|
# Android: Neither the NDK or a standalone toolchain was found.
|
|
export TARGET_CMAKE_TOOLCHAIN_FILE="${TERMUX_PKG_BUILDDIR}/android.toolchain.cmake"
|
|
touch "${TERMUX_PKG_BUILDDIR}/android.toolchain.cmake"
|
|
}
|
|
|
|
termux_step_make() {
|
|
cargo build --jobs $TERMUX_PKG_MAKE_PROCESSES --target $CARGO_TARGET_NAME --release
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
install -Dm755 -t $TERMUX_PREFIX/bin target/${CARGO_TARGET_NAME}/release/silicon
|
|
}
|