forked from github/verilator
Mockup for appImage
This commit is contained in:
parent
f95879a50a
commit
8beee42498
1
appImage/.gitignore
vendored
Normal file
1
appImage/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
usr/
|
10
appImage/AppRun
Executable file
10
appImage/AppRun
Executable 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}" "$@"
|
6
appImage/verilator.desktop
Normal file
6
appImage/verilator.desktop
Normal file
@ -0,0 +1,6 @@
|
||||
[Desktop Entry]
|
||||
Name=Verilator
|
||||
Exec=verilator
|
||||
Icon=verilator
|
||||
Type=Application
|
||||
Categories=Utility;
|
BIN
appImage/verilator.png
Normal file
BIN
appImage/verilator.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.7 KiB |
12
build-appImage.sh
Executable file
12
build-appImage.sh
Executable 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
|
Loading…
Reference in New Issue
Block a user