Operating System - HP-UX
1819691 Members
3220 Online
109605 Solutions
New Discussion юеВ

Application packaging software

 
Dodo_5
Frequent Advisor

Application packaging software

I want to package my application(application is developed using IBM websphere application server,process server,message broker).
Is it possible using PERL to package the developed application?
Or any tool or software (open source)which can do the same work(IBM build forge tool does the same...so any alternative of that tool in open source?)
3 REPLIES 3
Steven E. Protter
Exalted Contributor

Re: Application packaging software

Shalom,

The most widely useful tool for packaging is tar.

That makes your application not be OS dependent.

Surely if you intend it only for HP-UX its useful to build it as a .depot file, but if your stuff will run on other OS's tar it up with the full path, that will do the trick.

Possible to use perl? Yes. But you probably will need to write your own custom installer.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Dodo_5
Frequent Advisor

Re: Application packaging software

Thanks a lot for help.
Can you just provide some generic code or script for packaging,so that I can modify it for my application?
Ivan Krastev
Honored Contributor

Re: Application packaging software

Hi Dodo,

use Archive::Tar module for perl - http://perldoc.perl.org/Archive/Tar.html

regards,
ivan