Skip to content

Instantly share code, notes, and snippets.

@shimuldn
Forked from nimatrueway/install.sh
Last active June 16, 2020 10:09
Show Gist options
  • Save shimuldn/796014b537061831df6c4bdeac05dc52 to your computer and use it in GitHub Desktop.
Save shimuldn/796014b537061831df6c4bdeac05dc52 to your computer and use it in GitHub Desktop.
Install uGet Download Manager on macOS
# Warning: INCOMPLETE, GTK has problems !
brew install intltool pkg-config gtk+3 libnotify gstreamer openssl
# install gnu xgettext
export GETTEXT_VERSION=$(curl https://ftp.gnu.org/pub/gnu/gettext/ | grep -oP 'gettext-[0-9.]+(?=.tar.gz)' | sort | tail -n 1)
wget "https://ftp.gnu.org/pub/gnu/gettext/gettext-0.20.2.tar.gz"
tar -zxvf gettext-0.20.2.tar.gz
cd "$GETTEXT_VERSION"
./configure
make
make install
cd ..
rm -rf "$GETTEXT_VERSION"
# config and make
./configure
# fix all problems by adding these flags to failed gcc
~ fix gcc problem
gcc ... -I/usr/local/opt/openssl/include -L/usr/local/opt/openssl/lib
# still got problems in terms of dialogs/toolbars ?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment