The purpose of this guide is to assist in the installation of Tizen Studio on Arch Linux, specifically the CLI version, although the IDE version should technically work as well. The most challenging aspect of installing Tizen Studio on Arch Linux is dealing with outdated dependencies, such as gnome-doc-util
, which cannot be compiled.
To install Tizen Studio on Arch Linux, follow the steps below:
-
Download the latest version of the Tizen Studio CLI from the Samsung Developer website.
-
Install all the necessary dependencies from the patch by running the following command:
yay -S procps-ng gettext dbus curl expect gtk2 grep zip make qemu-user libpng12 webkitgtk2-bin
Note: Some dependencies that take a long time to install or are troublesome have been excluded.
yay -S webkitgtk2-bin
To install
webkitgtk2
binary version, you can compile it yourself by removing the-bin
. -
Install
debtap
from the AUR repository. -
Download the binary for
gnome-doc-utils
from here or any other source. -
Once you have successfully downloaded all the required files, run
debtap gnome-doc-utils*deb
. -
The command will generate a
.zst
file that can be installed usingpacman
. -
Use
pacman -U
to install the generated.zst
file. Note that this method is not recommended, and it may break your system. -
Install
gnome-desktop2
usingyay
or any other package manager you use. Edit thePKGBUILD
by adding--disable-desktop-docs
onbuild()
. -
After completing the above steps, apply the patch to this repository:
patch -u -b web-cli_Tizen_Studio_5.1_ubuntu-64.bin -i tizen_studio_cli.patch
-
Finally, run the executable
./web-cli_Tizen_Studio_5.1_ubuntu-64.bin
to complete the installation.
By following these steps, you should be able to install Tizen Studio on Arch Linux successfully.