InsteadMan 3
This is new version that is writing with go lang
Old version: https://github.com/jhekasoft/insteadman
GUI (GTK+ 3)
CLI
Download: https://github.com/jhekasoft/insteadman3/releases.
Build
Build CLI and GTK-versions:
make
Running
Run GTK (GUI):
./insteadman-gtk
Run CLI:
./insteadman
Installing
Install to the system path:
make install
Install to the destination dir:
make DESTDIR="package" install
Uninstalling
Uninstall from the system path:
make uninstall
Uninstall from the destination dir:
make DESTDIR="package" uninstall
Other build variants
If you want to build only CLI or GTK-version, then install Go dependencies:
make dep
Then build only CLI-version:
make cli
Or only GTK-version:
make gtk
Building CLI for all platforms (binaries will be placed to the build
directory):
make cli-cross
Test
Run tests:
make test