2018-09-10 00:42:26 +02:00
|
|
|
TERMUX_PKG_MAINTAINER="Leonid Plyushch <leonid.plyushch@gmail.com> @xeffyr"
|
|
|
|
|
2018-10-04 16:16:24 +02:00
|
|
|
## Note: riscvemu was renamed to tinyemu.
|
|
|
|
|
|
|
|
TERMUX_PKG_HOMEPAGE=https://bellard.org/tinyemu/
|
2018-09-10 00:42:26 +02:00
|
|
|
TERMUX_PKG_DESCRIPTION="RISC-V system emulator"
|
2018-10-04 16:16:24 +02:00
|
|
|
TERMUX_PKG_VERSION=20180923
|
|
|
|
TERMUX_PKG_SRCURL=https://bellard.org/tinyemu/tinyemu-2018-09-23.tar.gz
|
|
|
|
TERMUX_PKG_SHA256=9b58d5521df8356c3be09a520387d3e4adcb510cf8d2fd6bdd971287bd57d734
|
|
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
2018-09-10 00:42:26 +02:00
|
|
|
|
fix names for more packages
Now x11-packages repository will use original names for
packages. For example, libgtk2 now will be provided as
gtk2, libgtk3 will be available as gtk3, libsdl - as sdl.
List of changed packages:
libatk --> atk
libglu --> glu
libgtk2 --> gtk2
libgtk3 --> gtk3
libmesa --> mesa
libsdl --> sdl
libsdl2 --> sdl2
libsdl-net --> sdl-net
riscvemu-sdl --> riscvemu
xorg-xvfb --> xorg-server-xvfb
List of dependent packages (should be rebuilt with new deps):
dosbox, emacs-x, galculator, geany, libepoxy, mtpaint,
qemu-system-x86_64, the-powder-toy, tigervnc, wireshark-gtk,
xarchiver.
Note: depending on which packages are installed, it may be
necessary to upgrade with 'apt dist-upgrade'.
2018-10-03 20:02:25 +02:00
|
|
|
TERMUX_PKG_DEPENDS="libcurl, openssl, sdl"
|
|
|
|
TERMUX_PKG_CONFLICTS="riscvemu-sdl"
|
|
|
|
TERMUX_PKG_REPLACES="riscvemu-sdl"
|
2018-09-10 00:42:26 +02:00
|
|
|
|
2018-10-04 16:16:24 +02:00
|
|
|
termux_step_make() {
|
|
|
|
local RISCV_128BIT_SUPPORT
|
|
|
|
|
|
|
|
if [ "${TERMUX_ARCH}" = "aarch64" ] || [ "${TERMUX_ARCH}" = "x86_64" ]; then
|
|
|
|
RISCV_128BIT_SUPPORT="CONFIG_INT128=y"
|
|
|
|
else
|
|
|
|
RISCV_128BIT_SUPPORT=""
|
|
|
|
fi
|
|
|
|
|
|
|
|
make \
|
|
|
|
CROSS_PREFIX="${TERMUX_HOST_PLATFORM}-" \
|
|
|
|
TERMUX_CFLAGS="${CPPFLAGS} ${CFLAGS}" \
|
|
|
|
TERMUX_LDFLAGS="${LDFLAGS}" \
|
|
|
|
CONFIG_SDL=y \
|
|
|
|
${RISCV_128BIT_SUPPORT}
|
|
|
|
}
|
|
|
|
|
|
|
|
termux_step_make_install() {
|
|
|
|
install -Dm700 ./temu "${TERMUX_PREFIX}/bin/temu"
|
|
|
|
install -Dm700 ./splitimg "${TERMUX_PREFIX}/bin/temu-splitimg"
|
|
|
|
install -Dm700 ./build_filelist "${TERMUX_PREFIX}/bin/temu-build_filelist"
|
|
|
|
|
|
|
|
## Compatibility link.
|
|
|
|
ln -sfr "${TERMUX_PREFIX}/bin/temu" "${TERMUX_PREFIX}/bin/riscvemu"
|
|
|
|
|
|
|
|
## Unpacking and installing samples.
|
|
|
|
mkdir ./sample_files
|
|
|
|
cd ./sample_files && {
|
|
|
|
termux_download \
|
|
|
|
https://bellard.org/tinyemu/diskimage-linux-riscv-2018-09-23.tar.gz \
|
|
|
|
"${TERMUX_PKG_CACHEDIR}/samples.tar.gz" \
|
|
|
|
808ecc1b32efdd76103172129b77b46002a616dff2270664207c291e4fde9e14
|
|
|
|
|
|
|
|
tar xf "${TERMUX_PKG_CACHEDIR}/samples.tar.gz" --strip-components=1
|
|
|
|
|
|
|
|
install -Dm600 bbl32.bin "${TERMUX_PREFIX}/share/riscvemu/bbl32.bin"
|
|
|
|
install -Dm600 bbl64.bin "${TERMUX_PREFIX}/share/riscvemu/bbl64.bin"
|
|
|
|
install -Dm600 kernel-riscv32.bin "${TERMUX_PREFIX}/share/riscvemu/kernel-riscv32.bin"
|
|
|
|
install -Dm600 kernel-riscv64.bin "${TERMUX_PREFIX}/share/riscvemu/kernel-riscv64.bin"
|
|
|
|
install -Dm600 root-riscv32.bin "${TERMUX_PREFIX}/share/riscvemu/root-riscv32.bin"
|
|
|
|
install -Dm600 root-riscv64.bin "${TERMUX_PREFIX}/share/riscvemu/root-riscv64.bin"
|
|
|
|
install -Dm600 root-riscv32.cfg "${TERMUX_PREFIX}/share/riscvemu/root-riscv32.cfg"
|
|
|
|
install -Dm600 root-riscv64.cfg "${TERMUX_PREFIX}/share/riscvemu/root-riscv64.cfg"
|
|
|
|
install -Dm600 root_9p-riscv64.cfg "${TERMUX_PREFIX}/share/riscvemu/root_9p-riscv64.cfg"
|
2018-09-10 00:42:26 +02:00
|
|
|
|
2018-10-04 16:16:24 +02:00
|
|
|
## Use own directory for 9P.
|
|
|
|
sed -i "s@/tmp@${TERMUX_ANDROID_HOME}@g" "${TERMUX_PREFIX}/share/riscvemu/root_9p-riscv64.cfg"
|
|
|
|
}
|
2018-09-10 00:42:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
termux_step_create_debscripts() {
|
|
|
|
cp "${TERMUX_PKG_BUILDER_DIR}/postinst" ./
|
|
|
|
}
|