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.21, 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:
$ make
Run static analysis with:
$ make check
Run tests with:
$ make test
After you have compiled the application, you can install it.
To install for all users:
$ sudo make install prefix=/usr/local
To 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/local
To 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.