I'm looking for a process to build multiple GNU autotools based projects that are all located in separate source control.
I'm looking for a build framework that I can supply something along the lines of. Main things I want to specify are repo src (eg. git,hg...), depends.
{
repos : [
{ src : "git://someplace.com/repo1",
branch : "devel",
depends : []
},
{ src : "git://someplace.com/repo2",
branch : "default"
depends : ["repo1"]
}
]
}
Does anyone know with something like that exists? I've used bitbake/openembedded and yocto in past for different embedded projects but I think they are way overkill for what i'm looking for.
pkgsrc. – William Pursell Nov 2 '12 at 17:03