Merge a1766778be
into ad157c73aa
This commit is contained in:
commit
56c3a1088d
|
@ -11,6 +11,10 @@
|
||||||
# Illustrator CC Installer for Linux
|
# Illustrator CC Installer for Linux
|
||||||
This bash script helps you to install `Adobe Illustrator CC` on your Linux distro easily. It will download a free version of Illustrator and tries to run it using `wine` installed on your system
|
This bash script helps you to install `Adobe Illustrator CC` on your Linux distro easily. It will download a free version of Illustrator and tries to run it using `wine` installed on your system
|
||||||
|
|
||||||
|
## Fixes @ 14th December 2024
|
||||||
|
- wine64 -> wine : allow `launcher.sh` to launch your App.
|
||||||
|
- remote host -> local host installer : just download the tgz file into `~/Download` and run `./setup.sh` as usual.
|
||||||
|
|
||||||
## :rocket: Features
|
## :rocket: Features
|
||||||
* illustrator command
|
* illustrator command
|
||||||
* desktop entry
|
* desktop entry
|
||||||
|
@ -96,4 +100,4 @@ chmod +x uninstaller.sh
|
||||||
|
|
||||||
<a href="https://github.com/Gictorbit/photoshopCClinux">
|
<a href="https://github.com/Gictorbit/photoshopCClinux">
|
||||||
<img src="https://github.com/Gictorbit/photoshopCClinux/raw/master/images/AdobePhotoshop-icon.png" width="9%">
|
<img src="https://github.com/Gictorbit/photoshopCClinux/raw/master/images/AdobePhotoshop-icon.png" width="9%">
|
||||||
</a>
|
</a>
|
||||||
|
|
|
@ -62,24 +62,17 @@ function main() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function install_illustratorCC() {
|
function install_illustratorCC() {
|
||||||
local filename="illustratorCC17.tgz"
|
local filelink="/home/$USER/Downloads/illustratorCC17.tgz"
|
||||||
local filemd5="d470b541cef1339a66ea33a998801f83"
|
|
||||||
# local filelink="http://127.0.0.1:4050/illustratorCC17.tgz"
|
|
||||||
local filelink="https://victor.poshtiban.io/p/gictor/illustratorCC/illustratorCC17.tgz"
|
|
||||||
local filepath="$CACHE_PATH/$filename"
|
|
||||||
|
|
||||||
download_component $filepath $filemd5 $filelink $filename
|
|
||||||
|
|
||||||
echo "===============| IllustratorCC17 |===============" >> "$SCR_PATH/wine-error.log"
|
echo "===============| IllustratorCC17 |===============" >> "$SCR_PATH/wine-error.log"
|
||||||
|
|
||||||
show_message "extract IllustratorCC..."
|
show_message "extract IllustratorCC..."
|
||||||
rmdir_if_exist "$SCR_PATH/IllustratorCC17"
|
rmdir_if_exist "$SCR_PATH/IllustratorCC17"
|
||||||
tar -xzf "$filepath" -C "$SCR_PATH" || error "sorry something went wrong during illustrator installation"
|
tar -xzf "$filelink" -C "$SCR_PATH" || error "sorry something went wrong during illustrator installation"
|
||||||
|
|
||||||
show_message "install Illustrator..."
|
show_message "install Illustrator..."
|
||||||
|
|
||||||
show_message "IllustratorCC v17 x64 installed..."
|
show_message "IllustratorCC v17 x64 installed..."
|
||||||
unset filename filemd5 filelink filepath
|
|
||||||
}
|
}
|
||||||
|
|
||||||
check_arg $@
|
check_arg $@
|
||||||
|
|
|
@ -13,6 +13,6 @@ WINE_PREFIX="$SCR_PATH/prefix"
|
||||||
|
|
||||||
export WINEPREFIX="$WINE_PREFIX"
|
export WINEPREFIX="$WINE_PREFIX"
|
||||||
|
|
||||||
wine64 "$SCR_PATH/IllustratorCC17/IllustratorCC64.exe"
|
wine "$SCR_PATH/IllustratorCC17/IllustratorCC64.exe"
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue