Comic Sticks (xkcd-gtk) is a simple xkcd comic viewer written in Go using
GTK+3.
To build this program, you will need Go (version >= 1.23, something like
golang or go) and GTK+ development files (version >= 3.20, something like
libgtk-3-dev or gtk3-devel).
Just run make from the root of the repo:
$ makeRun static analysis with:
$ make checkRun tests with:
$ make testAfter you have compiled the application, you can install it.
To install for all users:
$ sudo make install prefix=/usr/localTo install for the current user only (you may need to add $HOME/.local/bin to
your $PATH):
$ make install prefix="$HOME/.local"To uninstall for all users:
$ sudo make uninstall prefix=/usr/localTo uninstall for the current user:
$ make uninstall prefix="$HOME/.local"This program comes with absolutely no warranty. See the GNU General Public License, version 3 or later for details.
