mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-21 20:50:07 +00:00
begun work on assembling images
This commit is contained in:
parent
0b8bcf565c
commit
73d379e407
22
buildScripts/assembleAppImage
Executable file
22
buildScripts/assembleAppImage
Executable file
@ -0,0 +1,22 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# This bash script automates the creation of an AppImage for pdf2htmlEX
|
||||||
|
# It is based upon code taken from
|
||||||
|
# https://github.com/AppImage/pkg2appimage
|
||||||
|
# and
|
||||||
|
# https://github.com/AppImage/AppImages
|
||||||
|
|
||||||
|
mkdir -p buildAppImage
|
||||||
|
|
||||||
|
cd buildAppImage
|
||||||
|
|
||||||
|
wget -q https://github.com/AppImage/AppImages/raw/master/functions.sh \
|
||||||
|
-O ./functions.sh
|
||||||
|
|
||||||
|
. ./functions.sh
|
||||||
|
|
||||||
|
apt download -y apt libapt-pkg5.0 libbz2-1.0 liblzma5 \
|
||||||
|
multiarch-support zlib1g dpkg
|
||||||
|
|
||||||
|
mkdir -p pdf2htmlEX.AppImage
|
||||||
|
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
# This bash script builds pdf2htmlEX
|
# This bash script builds pdf2htmlEX
|
||||||
|
|
||||||
cd pdf2html
|
cd pdf2htmlEX
|
||||||
mkdir build
|
mkdir build
|
||||||
cd build
|
cd build
|
||||||
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr ..
|
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr ..
|
||||||
|
11
buildScripts/pdf2htmlEX.desktop
Normal file
11
buildScripts/pdf2htmlEX.desktop
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Version=1.0
|
||||||
|
Type=Application
|
||||||
|
Name=pdf2htmlEX
|
||||||
|
Comment=pdf2htmlEX
|
||||||
|
Exec=/usr/local/bin/pdf2htmlEX
|
||||||
|
Icon=/usr/local/share/pdf2htmlEX/pdf2htmlEX-64x64
|
||||||
|
Categories=Office;
|
||||||
|
Terminal=false
|
||||||
|
StartupNotify=false
|
||||||
|
X-AppImage-Version=try1
|
Loading…
Reference in New Issue
Block a user