A quick and simple tool that overlays directory trees.
It means you can effortlessly and easily install files to the right places without writing any custom install scripts. Just replicate the structure you need inside your source tree and everything else will be handled by the tool.
Ever needed to create some sort of directory layering for packaging applications? In reality this tool was made to serve a very specific need: the runtime system for my zeus project and more specifically how the packaging for those works.
I wrote a similar tool for this job in bash but it had some problems:
So here I am, coding a simple tool for a very specific purpose. If you find this tool neat consider giving it a star ⭐
If you do decide to try out this tool, please be aware that there probably are many bugs (especially in path traversal), use it with care.
If you are the kind of person who needs this, then there is a high chance that you have rust
and cargo
installed. In that case:
bash
cargo install turboinstall
Command line arguments
```bash Usage: turboinstall [OPTIONS]
Arguments:
Options:
-p, --profile Path to the file with the profile definition [default: .turboinstall.json]
-f, --format In short this tool does 1 thing. It takes a directory tree ( And it copies it to another directory ( The command to achieve this is: The profile is a fancy way of saying NOTE: Path expansion is not fully completed but it is functional Profiles are only used for path expansion and nothing else, they are not needed if don't plan to use this feature at all. The following examples act in the same way, they are just expressed in different formats. This makes the tool easy to integrate with other custom tooling. The env format is especially useful because you can You can specify a custom profile with The following profiles can be used to do path expansion. So instead of the previous example, it would turn this: Into this: This way you can create different outputs from one easily understood source tree by just specifying another profile on the command like. For example, this could allow you to build packages for, let's say, different systems with different filesystem hierarchies from one source tree and a bunch of configuration files. No more pesky install scripts. The command to do this is: Where JSON: TOML: YAML: ENV: ```bash VARIABLE1='VALUE1'
DIR="/usr/local"
``` Hooks are just executables placed in a special location that are executed in wildcard order (alphanumerical) with 2 arguments: The special location for these files is inside the root of the source tree in a folder called The hooks are executed in the following order: pre-install hooks: post-install hooks: It is not strictly necessary to follow the naming convention shown here in the pre-install hooks, but it gives a clear indication of the order the hooks are executed in. The hooks are invoked with 2 arguments: Their working directory is left untouched and is the same as the working directory where The executables insider The executables insider src
) like this:none
src/
├── dir1/
│ ├── dir2/
│ │ └── file2
│ └── file1
└── file0
dst
) like this:none
dst/
├── dir1/
│ ├── dir2/
│ │ └── file2
│ └── file1
└── file0
bash
turboinstall ./dst ./src
What is the profile?
configuration file
or variable store
. It is a file in one of the supported formats (see Features) that holds the variables for the path expansion.
Path expansion
source
it directly from shell scripts.-p
.none
src/
├── file
└── {DIR}/
├── test/
│ └── file
└── file_{VARIABLE_1}
none
dst/
├── file
└── usr/
└── local/
├── test/
│ └── file
└── file_VALUE_1
bash
turboinstall ./dst ./src -p example_profile.json
example_profile.json
is the file with one of the example profiles bellow. It does not need to be named like that, just a normal file with the corresponding extension, otherwise you will need to specify the format with -f
.Example profiles
json
{
"VARIABLE_1": "VALUE_1",
"DIR": "/usr/local"
}
toml
VARIABLE_1 = "VALUE_1"
DIR = "/usr/local"
yaml
VARIABLE_1: "VALUE_1"
DIR: "/usr/local"
This is a comment
Also, the quotes are not needed
Using hooks
.turboinstall
, in other words this is how your source tree should look like:none
src/
├── .turboinstall/
│ ├── post-install/
│ │ └── some_hook.sh
│ └── pre-install/
│ ├── 00-hook.sh
│ └── 10-another_hook.sh
00-hook.sh
10-another_hook.sh
some_hook.sh
Hook environment
turboinstall
was ran. This allows the hooks to access any other files that might be relevant and are not present in the source tree.Pre-install
.turboinstall/pre-install
, like the name suggests are run before any of the actual source tree has been copied.Post-install
.turboinstall/pre-install
, like the name suggests are run after any of the source tree has been copied.