Files
termux-packages/packages/lux-cli/build.sh
2026-02-10 02:19:29 +00:00

136 lines
4.5 KiB
Bash

TERMUX_PKG_HOMEPAGE=https://lux.lumen-labs.org
TERMUX_PKG_DESCRIPTION="A package manager for Lua, similar to luarocks"
TERMUX_PKG_LICENSE="LGPL-3.0-or-later"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="0.25.2"
TERMUX_PKG_REVISION=1
TERMUX_PKG_SRCURL="https://github.com/lumen-oss/lux/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz"
TERMUX_PKG_SHA256=9b9b9ad11f22bf666ec48092126a352d752cd16c579e7713fdcb8da3a215fc5a
TERMUX_PKG_DEPENDS="bzip2, gpgme, libgit2, libgpg-error, lua54, openssl, xz-utils"
TERMUX_PKG_PROVIDES="lx"
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_HOSTBUILD=true
termux_pkg_auto_update() {
# based on `termux_github_api_get_tag.sh`
# fetch newest tags
local newest_tags newest_tag
newest_tags="$(curl -d "$(cat <<-EOF | tr '\n' ' '
{
"query": "query {
repository(owner: \"lumen-oss\", name: \"lux\") {
refs(refPrefix: \"refs/tags/\", first: 20, orderBy: {
field: TAG_COMMIT_DATE, direction: DESC
})
{ edges { node { name } } }
}
}"
}
EOF
)" \
-H "Authorization: token ${GITHUB_TOKEN}" \
-H "Accept: application/vnd.github.v3+json" \
--silent \
--location \
--retry 10 \
--retry-delay 1 \
https://api.github.com/graphql \
| jq '.data.repository.refs.edges[].node.name')"
# filter only tags having "v" at the start and extract only raw version.
read -r newest_tag < <(echo "$newest_tags" | grep -Po '(?<=^"v)\d+\.\d+\.\d+' | sort -Vr)
[[ -z "${newest_tag}" ]] && termux_error_exit "Unable to get tag from ${TERMUX_PKG_SRCURL}"
termux_pkg_upgrade_version "${newest_tag}"
}
termux_step_host_build() {
if [[ "$TERMUX_ON_DEVICE_BUILD" == "true" ]]; then
return
fi
# libgpgme-dev and any dependencies that aren't in the ubuntu builder at time of writing
local -a ubuntu_packages=(
"dirmngr"
"gnupg"
"gnupg-l10n"
"gnupg-utils"
"gpg"
"gpg-agent"
"gpg-wks-client"
"gpgconf"
"gpgsm"
"gpgv"
"keyboxd"
"libassuan-dev"
"libgpgme-dev"
"libgpgme11t64"
)
termux_download_ubuntu_packages "${ubuntu_packages[@]}"
PKG_CONFIG_PATH_x86_64_unknown_linux_gnu="${TERMUX_PKG_HOSTBUILD_DIR}/ubuntu_packages/usr/lib/x86_64-linux-gnu/pkgconfig"
RUSTFLAGS="-L${TERMUX_PKG_HOSTBUILD_DIR}/ubuntu_packages/usr/lib/x86_64-linux-gnu"
export PKG_CONFIG_PATH_x86_64_unknown_linux_gnu RUSTFLAGS
cd "${TERMUX_PKG_SRCDIR}" || termux_error_exit "Couldn't enter source code directory: ${TERMUX_PKG_SRCDIR}"
termux_setup_rust
cargo fetch --locked
# build shell completions
cargo run --package xtask --release --frozen -- dist-completions
unset PKG_CONFIG_PATH_x86_64_unknown_linux_gnu RUSTFLAGS
# preserve the hostbuilt shell completions
rm -rf "${TERMUX_PKG_HOSTBUILD_DIR}/dist/"
cp -r "${TERMUX_PKG_SRCDIR}/target/dist/" "${TERMUX_PKG_HOSTBUILD_DIR}/"
}
termux_step_pre_configure() {
# software does not officially support cross-compilation, but for some reason, it appears to work anyway
# https://github.com/lumen-oss/lux/blob/c794f476cb459df5bcb6e971c0c6f76e6a2a4dd4/lux-lib/src/lua_rockspec/platform.rs#L72
if [[ "$TERMUX_ON_DEVICE_BUILD" == "false" ]]; then
echo "WARNING: $TERMUX_PKG_NAME's upstream project does not officially support cross-compilation!"
fi
termux_setup_rust
# ld: error: undefined symbol: __atomic_compare_exchange
# ld: error: undefined symbol: __atomic_load
# ld: error: undefined symbol: __atomic_is_lock_free
if [[ "${TERMUX_ARCH}" == "i686" ]]; then
local env_host=$(printf $CARGO_TARGET_NAME | tr a-z A-Z | sed s/-/_/g)
export CARGO_TARGET_${env_host}_RUSTFLAGS+=" -C link-arg=$(${CC} -print-libgcc-file-name)"
fi
cargo fetch --locked --target "$CARGO_TARGET_NAME"
}
termux_step_make() {
cargo build --jobs "$TERMUX_PKG_MAKE_PROCESSES" --target "$CARGO_TARGET_NAME" --release --frozen
if [[ "$TERMUX_ON_DEVICE_BUILD" == "true" ]]; then
# build shell completions
cargo run --package xtask --release --frozen -- dist-completions
rm -rf "${TERMUX_PKG_HOSTBUILD_DIR}/dist/"
cp -r "${TERMUX_PKG_SRCDIR}/target/dist/" "${TERMUX_PKG_HOSTBUILD_DIR}/"
fi
}
termux_step_make_install() {
local _cargo_target_dir _completions_dir
_cargo_target_dir="$TERMUX_PKG_BUILDDIR/target"
_completions_dir="$TERMUX_PKG_HOSTBUILD_DIR/dist"
install -Dm755 -t "$TERMUX_PREFIX/bin" "$_cargo_target_dir/$CARGO_TARGET_NAME/release/lx"
install -Dm644 "$_completions_dir/lx.bash" "$TERMUX_PREFIX/share/bash-completion/completions/lx"
install -Dm644 -t "$TERMUX_PREFIX/share/zsh/site-functions" "$_completions_dir/_lx"
install -Dm644 -t "$TERMUX_PREFIX/share/fish/vendor_completions.d" "$_completions_dir/lx.fish"
}