Skip to content

jhekasoft/insteadman

Repository files navigation

InsteadMan InsteadMan 3

goreportcard

This is new version that is writing with go lang

Old version: https://github.com/jhekasoft/insteadman2

GUI (GTK+ 3)

InsteadMan GUI

CLI

InsteadMan GUI

Download: https://github.com/jhekasoft/insteadman/releases.

Build

Download insteadman3:

go get /...

Go to the insteadman3 directory:

cd ~/go/src/github.com/jhekasoft/insteadman/

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

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

Test

Run tests:

make test

Run GTK tests (with CGO):

make gtk-test