Skip to content

Instantly share code, notes, and snippets.

@chickendrop89
Last active December 8, 2025 21:17
Show Gist options
  • Select an option

  • Save chickendrop89/17cb9d95a8c5e6968d877c0b507cc504 to your computer and use it in GitHub Desktop.

Select an option

Save chickendrop89/17cb9d95a8c5e6968d877c0b507cc504 to your computer and use it in GitHub Desktop.
Tizen studio bypass webkitgtk dependency

The deprecated Tizen Studio app has a dependency on webkitgtk package that doesn't exist anymore on modern fedora distributions/repos

Here is a small "script" to trick the tizen studio installer into thinking it's installed by creating a wrapper for the rpm command. Just paste this to your terminal:

MOCK_BIN=$(mktemp -d)

cat << 'EOF' > "$MOCK_BIN/rpm"
#!/bin/bash

if [[ "$@" == "-qi webkitgtk" ]]; then
    echo "Name        : webkitgtk"
else
    /usr/bin/rpm "$@"
fi
EOF

chmod +x "$MOCK_BIN/rpm"

Then set the PATH, and run the installer:

export PATH="$MOCK_BIN:$PATH"

chmod +x ./tizenstudio.bin

./tizenstudio.bin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment