in reply to Re^3: How do I configure Module::Build to build multiple packages from the same lib directory?
in thread How do I configure Module::Build to build multiple packages from the same lib directory?

cd one-dist...cd two-dist won't work for us without a massive restructuring of our repository. All of our code is in one lib directory, e.g. ourstuff/lib. All the examples I have found for Module::Build indicate that Module::Build expects to find both Build.PL and lib in the same directory, that is:
one-dist/Build.PL one-dist/lib two-dist/Build.PL two-dist/lib

There are, of course, lots of ways to handle this problem, but none of them a quick fix:

solution 1: % perl Build1.PL % perl Build2.PL ... solution 2: % cd staging/one-dist % ln -s ourstuff/lib staging/one-dist % perl Build.PL ... solution 3: supplement Module::Build with make or ant solution 4: use Module::Build as an API and write some sort of software around it

Solution 1 has the problem that other files (e.g. MANIFEST-SKIP) would all have to be specially named so that the right files were used with the right build script. Seems like a pretty hard approach to get right given the complexity of Module::Build.

Solution 2 means playing around with the file system - better than restructuring a repository or second guessing Module::Build, but not really to my liking. It has to be redone each time someone sets up a fresh work area. Even if its scripted, it still makes assumptions about how people configure their work environment (usually a pretty personal decision for most programmers). OK, we can set standards, but now we're into a process that is as much political as technical.

If solution 2 is the way to go this, solution 3 might be a good way to implement it - at least both ant and make provide a framework that separates configuration data from configuration instructions. And they don't mess up the end-user because ant/make are only being used to build the uploaded files and play no role in downloading and installation. But adding ant/make into the mix makes the build process that much more complicated and harder to maintain going forward.

Solution 4 essentially involves writing yet another perl module. But I don't really want to do that unless I've genuinely stumbled on a problem that doesn't have an existing solution. There are too many things that need inventing to waste time on recreating the wheel.

Thanks, beth
  • Comment on Re^4: How do I configure Module::Build to build multiple packages from the same lib directory?
  • Select or Download Code

Replies are listed 'Best First'.
Re^5: How do I configure Module::Build to build multiple packages from the same lib directory?
by Anonymous Monk on Oct 30, 2008 at 14:47 UTC

      Many thanks! This was exactly the kind of answer I was looking for, though I'm a bit frustrated that there doesn't seem to be module.

      beth