mirror of
https://github.com/termux/termux-packages.git
synced 2024-12-12 13:03:31 +00:00
f884fd6dc9
For some reason automatic update for this fails with the following error: ``` Traceback (most recent call last): File "/home/twaik/termux-packages/scripts/buildorder.py", line 381, in <module> main() File "/home/twaik/termux-packages/scripts/buildorder.py", line 372, in main build_order = generate_target_buildorder(package, pkgs_map, fast_build_mode) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/twaik/termux-packages/scripts/buildorder.py", line 325, in generate_target_buildorder package = pkgs_map[package_name] ~~~~~~~~^^^^^^^^^^^^^^ KeyError: 'chibicc' ERROR: Obtaining update order failed for chibicc ```
40 lines
1.3 KiB
Bash
40 lines
1.3 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/rui314/chibicc
|
|
TERMUX_PKG_DESCRIPTION="A Small C Compiler"
|
|
TERMUX_PKG_LICENSE="MIT"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
_COMMIT=90d1f7f199cc55b13c7fdb5839d1409806633fdb
|
|
TERMUX_PKG_VERSION=2020.12.07
|
|
TERMUX_PKG_REVISION=1
|
|
TERMUX_PKG_SRCURL=git+https://github.com/rui314/chibicc
|
|
TERMUX_PKG_SHA256=9cb136d4713c8003122e8b637730a15808dd102dc2b54a5f96f33053a34a8171
|
|
TERMUX_PKG_AUTO_UPDATE=false
|
|
TERMUX_PKG_GIT_BRANCH=main
|
|
TERMUX_PKG_DEPENDS="binutils-is-llvm | binutils, libandroid-glob"
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
TERMUX_PKG_BLACKLISTED_ARCHES="aarch64, arm, i686"
|
|
|
|
termux_step_post_get_source() {
|
|
git fetch --unshallow
|
|
git checkout $_COMMIT
|
|
|
|
local version="$(git log -1 --format=%cs | sed 's/-/./g')"
|
|
if [ "$version" != "$TERMUX_PKG_VERSION" ]; then
|
|
echo -n "ERROR: The specified version \"$TERMUX_PKG_VERSION\""
|
|
echo " is different from what is expected to be: \"$version\""
|
|
return 1
|
|
fi
|
|
|
|
local s=$(find . -type f ! -path '*/.git/*' -print0 | xargs -0 sha256sum | LC_ALL=C sort | sha256sum)
|
|
if [[ "${s}" != "${TERMUX_PKG_SHA256} "* ]]; then
|
|
termux_error_exit "Checksum mismatch for source files."
|
|
fi
|
|
}
|
|
|
|
termux_step_pre_configure() {
|
|
LDFLAGS+=" -landroid-glob"
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
install -Dm700 -t $TERMUX_PREFIX/bin chibicc
|
|
}
|