-
Notifications
You must be signed in to change notification settings - Fork 2
README
magnolia edited this page Oct 6, 2013
·
1 revision
Enbld - Build your development environment
#!/usr/bin/perl
use 5.012;
use warnings;
use utf8;
use lib "$ENV{HOME}/.enbld/extlib/lib/perl5/";
use Enbld;
enbld 'myenv' => build {
# install latest version
target 'git' => define {
version 'latest';
};
# install specific version
target 'perl' => define {
version '5.18.1';
};
# install software and set configuration file
target 'vim' => define {
version 'latest';
};
conf '.vimrc' => load {
from 'https://raw.github.com/magnolia-k/vimrc/master/.vimrc';
};
};