termux-packages/packages/simh/build.sh

41 lines
1.1 KiB
Bash

TERMUX_PKG_HOMEPAGE=http://simh.trailing-edge.com/
TERMUX_PKG_DESCRIPTION="A collection of simulators for computer hardware and software from the past"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_LICENSE_FILE="LICENSE"
TERMUX_PKG_MAINTAINER="@termux"
_VERSION=3.12-4
TERMUX_PKG_VERSION=1:${_VERSION/-/.}
TERMUX_PKG_SRCURL=http://simh.trailing-edge.com/sources/simhv${_VERSION/.}.zip
TERMUX_PKG_SHA256=a05a21b1d359498b673c837db224ab37ede0c6ac406bd15af23cca8e7a60e8c4
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_EXTRA_MAKE_ARGS="DONT_USE_ROMS=1 TESTS=0"
termux_step_post_get_source() {
cp $TERMUX_PKG_BUILDER_DIR/LICENSE ./
}
termux_step_pre_configure() {
CFLAGS+=" -fcommon -fwrapv"
LDFLAGS+=" -lm"
}
termux_step_make() {
make -j $TERMUX_MAKE_PROCESSES \
GCC="$CC" CFLAGS_O="$CFLAGS $CPPFLAGS" LDFLAGS="$LDFLAGS" \
$TERMUX_PKG_EXTRA_MAKE_ARGS
}
termux_step_make_install() {
shopt -s nullglob
for f in BIN/*; do
if [ -f "$f" ]; then
local b="$(basename "$f")"
install -Dm700 -T "$f" $TERMUX_PREFIX/bin/simh-"$b"
fi
done
for f in */*.bin; do
install -Dm600 -T "$f" $TERMUX_PREFIX/share/simh/"$f"
done
shopt -u nullglob
}