Skip to content
magnolia edited this page Oct 6, 2013 · 1 revision

NAME

Enbld - Build your development environment

SYNOPSIS

#!/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';
    };
};
Clone this wiki locally