mirror of
https://github.com/termux/termux-packages.git
synced 2025-03-04 04:48:55 +00:00
49 lines
1.4 KiB
Bash
49 lines
1.4 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://www.softsynth.com/pforth/
|
|
TERMUX_PKG_DESCRIPTION="Portable Forth in C"
|
|
TERMUX_PKG_LICENSE="Public Domain"
|
|
TERMUX_PKG_LICENSE_FILE="license.txt"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION=1:2.0.1
|
|
TERMUX_PKG_SRCURL=https://github.com/philburk/pforth/archive/refs/tags/v${TERMUX_PKG_VERSION#*:}.tar.gz
|
|
TERMUX_PKG_SHA256=f4c417d7d1f2c187716263484bdc534d3224b6d159e049d00828a89fa5d6894d
|
|
TERMUX_PKG_HOSTBUILD=true
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
|
|
termux_step_host_build() {
|
|
termux_setup_cmake
|
|
|
|
cp -a $TERMUX_PKG_SRCDIR/* .
|
|
|
|
mkdir -p 32bit
|
|
# Add -Wno-shift-count-overflow to ignore:
|
|
# /home/builder/.termux-build/pforth/src/csrc/pf_save.c:223:34: error: right shift count >= width of type [-Werror=shift-count-overflow
|
|
# 223 | *addr++ = (uint8_t) (data>>56);
|
|
# | ^~
|
|
CC="gcc -m32" CFLAGS="-Wno-shift-count-overflow" cmake .
|
|
make
|
|
install -m700 fth/pforth 32bit/
|
|
install -m600 csrc/pfdicdat.h 32bit/
|
|
|
|
rm -rf CMakeCache.txt CMakeFiles
|
|
|
|
mkdir -p 64bit
|
|
cmake .
|
|
make
|
|
install -m700 fth/pforth 64bit/
|
|
install -m600 csrc/pfdicdat.h 64bit/
|
|
}
|
|
|
|
termux_step_post_configure() {
|
|
if [ $TERMUX_ARCH_BITS = "32" ]; then
|
|
local folder=32bit
|
|
else
|
|
local folder=64bit
|
|
fi
|
|
cp $TERMUX_PKG_HOSTBUILD_DIR/$folder/pforth fth/
|
|
cp $TERMUX_PKG_HOSTBUILD_DIR/$folder/pfdicdat.h csrc/
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
install -m700 fth/pforth_standalone $TERMUX_PREFIX/bin/pforth
|
|
}
|