Mockup for appImage

This commit is contained in:
Stefan Wallentowitz 2020-05-25 22:26:37 +02:00
parent f95879a50a
commit 8beee42498
5 changed files with 29 additions and 0 deletions

1
appImage/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
usr/

10
appImage/AppRun Executable file
View File

@ -0,0 +1,10 @@
#!/bin/bash -e
SELF=$(readlink -f "$0")
HERE=${SELF%/*}
export PATH="${HERE}/usr/bin/:${HERE}/usr/sbin/:${HERE}/usr/games/:${HERE}/bin/:${HERE}/sbin/${PATH:+:$PATH}"
export VERILATOR_ROOT=${HERE}/usr/share/verilator
export VERILATOR_BIN=../../bin/verilator_bin
EXEC=$(grep -e '^Exec=.*' "${HERE}"/*.desktop | head -n 1 | cut -d "=" -f 2 | cut -d " " -f 1)
exec "${EXEC}" "$@"

View File

@ -0,0 +1,6 @@
[Desktop Entry]
Name=Verilator
Exec=verilator
Icon=verilator
Type=Application
Categories=Utility;

BIN
appImage/verilator.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

12
build-appImage.sh Executable file
View File

@ -0,0 +1,12 @@
#!/bin/bash -e
APP_IMAGE_TOOL=${APP_IMAGE_TOOL:-appimagetool-x86_64.AppImage}
./configure --prefix=${PWD}/appImage/usr --disable-defenv --enable-copy-runtime-files-default LDFLAGS=-static
make -j $(nproc)
make install
# clean up things that are not used in this setting
rm -r appImage/usr/share/pkgconfig
$APP_IMAGE_TOOL appImage