-
-
Save shimuldn/796014b537061831df6c4bdeac05dc52 to your computer and use it in GitHub Desktop.
Install uGet Download Manager on macOS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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