Compare commits

...

2 Commits

Author SHA1 Message Date
Itai Nelken c35778641c
Update install-64 3 years ago
Itai Nelken 5c6645d9b8
Update install-64 3 years ago

@ -7,6 +7,9 @@ function error {
exit 1
}
#I know the the manage script already does this, but I don't feel comfortable not adding this - Itai
cd "$HOME"
#downloads
wget https://remarkableapp.github.io/files/remarkable_1.87_all.deb || error 'Failed to Download remarkable_1.87_all'
wget http://ftp.br.debian.org/debian/pool/main/w/webkitgtk/gir1.2-webkit-3.0_2.4.11-3_arm64.deb || error 'Failed to Download gir1.2-webkit-3.0'
@ -14,16 +17,12 @@ wget http://ftp.br.debian.org/debian/pool/main/w/webkitgtk/libjavascriptcoregtk-
wget http://ftp.br.debian.org/debian/pool/main/i/icu/libicu57_57.1-6+deb9u4_arm64.deb || error 'Failed to Download libicu57'
wget http://ftp.br.debian.org/debian/pool/main/w/webkitgtk/libwebkitgtk-3.0-0_2.4.11-3_arm64.deb || error 'Failed to download libwebkitgtk'
wget http://ftp.br.debian.org/debian/pool/main/w/webkitgtk/gir1.2-javascriptcoregtk-3.0_2.4.11-3_arm64.deb || error 'Failed to download gir1.2-javascriptcoregtk'
wget http://ftp.br.debian.org/debian/pool/main/e/enchant/libenchant1c2a_1.6.0-11.1+b1_arm64.deb || error 'Failed to download libenchant1c2a'
wget http://ftp.br.debian.org/debian/pool/main/libj/libjpeg-turbo/libjpeg62-turbo_2.0.6-4_arm64.deb || error 'Failed to download libjpeg62-turbo'
#installation
"${DIRECTORY}/pkg-install" ~/libicu57_57.1-6+deb9u4_arm64.deb "$(dirname "$0")" || error 'Failed to install libicu57_57.1-6+deb9u4_arm64'
"${DIRECTORY}/pkg-install" ~/libjavascriptcoregtk-3.0-0_2.4.11-3_arm64.deb "$(dirname "$0")" || error 'Failed to install libjavascriptcoregtk-3.0-0_2.4.11-3_arm64'
"${DIRECTORY}/pkg-install" ~/libwebkitgtk-3.0-0_2.4.11-3_arm64.deb "$(dirname "$0")" || error 'Failed to install libwebkitgtk-3.0-0_2.4.11-3_arm64'
"${DIRECTORY}/pkg-install" ~/gir1.2-javascriptcoregtk-3.0_2.4.11-3_arm64.deb "$(dirname "$0")" || error 'Failed to install libjavascriptcoregtk-3.0-0_2.4.11-3_arm64'
"${DIRECTORY}/pkg-install" ~/gir1.2-webkit-3.0_2.4.11-3_arm64.deb "$(dirname "$0")" || error 'Failed to install gir1.2-webkit-3.0_2.4.11-3_arm64'
"${DIRECTORY}/pkg-install" ~/remarkable_1.87_all.deb "$(dirname "$0")" || error 'Failed to install remarkable_1.87_all'
"${DIRECTORY}/pkg-install" "$(HOME)/gir1.2-webkit-3.0_2.4.11-3_arm64.deb $(HOME)/gir1.2-javascriptcoregtk-3.0_2.4.11-3_arm64.deb $(HOME)/libwebkitgtk-3.0-0_2.4.11-3_arm64.deb $(HOME)/libjavascriptcoregtk-3.0-0_2.4.11-3_arm64.deb $(HOME)/libenchant1c2a_1.6.0-11.1+b1_arm64.deb $(HOME)/libjpeg62-turbo_2.0.6-4_arm64.deb $(HOME)/libicu57_57.1-6+deb9u4_arm64.deb $(HOME)/remarkable_1.87_all.deb" "$(dirname "$0")" || error 'Failed to install libicu57_57.1-6+deb9u4_arm64'
#remove
rm -f remarkable_1.87_all.deb
@ -32,3 +31,5 @@ rm -f libwebkitgtk-3.0-0_2.4.11-3_arm64.deb
rm -f libjavascriptcoregtk-3.0-0_2.4.11-3_arm64.deb
rm -f gir1.2-javascriptcoregtk-3.0_2.4.11-3_arm64.deb
rm -f libicu57_57.1-6+deb9u4_arm64.deb
rm -f libjpeg62-turbo_2.0.6-4_arm64.deb
rm -f libenchant1c2a_1.6.0-11.1+b1_arm64.deb

Loading…
Cancel
Save