Skip to content

Instantly share code, notes, and snippets.

@tadzik
Created November 19, 2011 14:53
Show Gist options
  • Save tadzik/1378915 to your computer and use it in GitHub Desktop.
Save tadzik/1378915 to your computer and use it in GitHub Desktop.
submethod BUILDALL(|$) {
callsame; # attribute initialization
$.ecosystem = Panda::Ecosystem.new(
statefile => $!statefile,
projectsfile => $!projectsfile,
);
$!resources = Panda::Resources.new(srcdir => $!srcdir);
$.fetcher = Panda::Fetcher.new(resources => $!resources);
$.builder = Panda::Builder.new(resources => $!resources);
$.tester = Panda::Tester.new(resources => $!resources);
$.installer = Panda::Installer.new(
resources => $.resources,
destdir => $!destdir,
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment