This repository is a small example command line interface using the Conche
build system. It was mostly generated via conche init
.
$ conche init Hello --with-cli --with-tests
This example provides a command called hello
which can output Hello World
or Hello and some given names.
$ hello
Hello World
$ hello Kyle
Hello Kyle
$ hello Kyle Katie
Hello Kyle and Katie
Using Conche, the example can be installed using conche install
.
$ conche install
By default, it will install the tool into /usr/local
, you can pass in a
custom destination using --prefix
.
$ conche install --prefix /usr/local/Cellar/hello/HEAD
$ conche test
You can use conche
to build and run the hello
example without
installing it to your system as follows:
$ conche build
$ conche exec hello