Bugzilla: Difference between revisions
From charlesreid1
(Created page with "Bugzilla is written in Perl. It's a bug tracking program. Working on getting it hooked up with Mediawiki and ViewVC. used this perl install script to install Perl dependencies...") |
No edit summary |
||
| Line 30: | Line 30: | ||
</source> | </source> | ||
If you run into trouble downloading/installing any of these, you can also download tarballs from the Perl CPAN web site. You can get instructions on how to install the CPAN tarballs there, but generally it will be something like this: | |||
<pre> | |||
perl Makefile.PL # this generates a Makefile | |||
make | |||
make test # wont work unless you have 'test' database | |||
sudo make install | |||
</pre> | |||
Revision as of 17:59, 18 December 2011
Bugzilla is written in Perl. It's a bug tracking program.
Working on getting it hooked up with Mediawiki and ViewVC.
used this perl install script to install Perl dependencies:
#!/bin/sh
# install cpanm
# see http://www.charlesmartinreid.com/wiki/Perl#Installing for details
cpan App::cpanminus
# now install perl module dependencies
cpanm CGI
cpanm Date::Format
cpanm DateTime
cpanm DateTime
cpanm DateTime::TimeZone
cpanm DBI
cpanm DBD::mysql
cpanm DBD::Pg
cpanm DBD::Oracle
cpanm Digest::SHA
cpanm Email::Send
cpanm Email::MIME
cpanm Template
cpanm URI
If you run into trouble downloading/installing any of these, you can also download tarballs from the Perl CPAN web site. You can get instructions on how to install the CPAN tarballs there, but generally it will be something like this:
perl Makefile.PL # this generates a Makefile make make test # wont work unless you have 'test' database sudo make install