This is new version that is writing with go lang
Old version: https://github.com/jhekasoft/insteadman2
Download: https://github.com/jhekasoft/insteadman/releases.
Download insteadman3
:
go get /...
Go to the insteadman3
directory:
cd ~/go/src/github.com/jhekasoft/insteadman/
Build CLI and GTK-versions:
make
Run GTK (GUI):
./insteadman-gtk
Run CLI:
./insteadman
Install to the system path:
make install
Install to the destination dir:
make DESTDIR="package" install
Uninstall from the system path:
make uninstall
Uninstall from the destination dir:
make DESTDIR="package" uninstall
Build only CLI-version:
make insteadman
Or only GTK-version:
make insteadman-gtk
Building CLI for all platforms (binaries will be placed to the build
directory):
make insteadman-cross
Run tests:
make test
Run GTK tests (with CGO):
make gtk-test