A compromise between the speed of make and the ease of use of a build script
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Codinget c6004f1582 updated the binary to not be packaged with the library 4 years ago
bin updated the binary to not be packaged with the library 4 years ago
moonbuild added lib, new alfons tasks, simplified executor behavior and added task count, fixed _.exclude not being in the _ lib, updated Build.moon and README.md 4 years ago
out updated the binary to not be packaged with the library 4 years ago
rockspecs Producing rockspec 2.2.1-1 4 years ago
.gitignore fix gitignore 4 years ago
Alfons.moon added lib, new alfons tasks, simplified executor behavior and added task count, fixed _.exclude not being in the _ lib, updated Build.moon and README.md 4 years ago
Build.moon updated the binary to not be packaged with the library 4 years ago
LICENSE initial commit 4 years ago
Makefile added install target 4 years ago
README.md updated the binary to not be packaged with the library 4 years ago
rock.yml Producing rockspec 2.2.0-2 4 years ago

README.md

moonbuild

Now in v2 - complete rework from v1

Because make is painful to use, and build scripts are too slow. Moonbuild aims to be a good compromise.
You should probably use http://gittup.org/tup/ instead if you want a good build system.

How does it work?

moonbuild reads a build file, usually Build.moon that is written in a Moonscript DSL to define its targets and variables.
It then builds a DAG for the dependancies of the targets you tell it to build.
Then, it tries building every target in the graph while respecting dependancies, possibly on multiple processes.

Essentially, it works the same way as make, just with a different language, you can compare the Build.moon and Makefile in this repo to see for yourself.

Why Moonscript?

Because it's fast, based on lua, and making DSLs with it is relatively easy.
It's also a language I like a lot, so I might have been biased when choosing it.

Installing

It is available on luarocks with luarocks install moonbuild.
It is also recommended to install luaposix if you can, as it speeds it up a lot, or luafilesystem in case it isn't available.

Building from source

You will need argparse and moonscript installed from luarocks, and luaposix or luafilesystem are recommended.

Bootstrapping

You can build moonbuild with itself: moon bin/moonbuild.moon -qjy.
This will leave the binary ready to be used as out/moonbuild (it will still depend on the library to be used).
The binary and library can then be installed with bin/moonbuild install.

Docs

TODO