Small changes to RBuild syntax
in design
November 06, 2011
So yeah, been a while since I last posted or worked on Distrø, but I started working on it again.
As first thing I fixed a bit the RBuild syntax and the database models to suck a bit less.
The only difference now in writing rbuilds is that you don’t have to use Package.define
but just
write it as you would.
Old syntax:
Package.define('package') {
tags 'foo', 'bar'
...
}
New syntax:
name 'package'
tags 'foo', 'bar'
...
Way better, isn’t it?