~dveeden/mysql-sandbox/mysql-sandbox

« back to all changes in this revision

Viewing changes to mkdist.sh

  • Committer: Giuseppe Maxia
  • Date: 2009-05-09 08:04:44 UTC
  • Revision ID: g.maxia@gmail.com-20090509080444-jy8a330el0mt425a
Tags: 3.0
- 3.0.00 GA release
- no code modification. Same codebase as 2.0.99f
- completed cookbook (41 recipes in MySQL::Sandbox::Recipes)
- added script_templates directory (No modification in current version, just preparation for 3.1.xx)
- added drafts directory

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
perl -i.bak -pe 'BEGIN{$V=shift;};s/^(our \$VERSION=)([^;]+)/$1"$V"/' $VERSION lib/MySQL/Sandbox/Recipes.pm
13
13
 
14
14
pod2text lib/MySQL/Sandbox.pm > README
15
 
pod2html lib/MySQL/Sandbox.pm > sandbox.html
16
 
pod2html lib/MySQL/Sandbox/Recipes.pm > cookbook.html
 
15
pod2html lib/MySQL/Sandbox.pm > ./drafts/sandbox.html
 
16
pod2html lib/MySQL/Sandbox/Recipes.pm > ./drafts/cookbook.html
17
17
 
18
18
perl Makefile.PL PREFIX=$HOME/usr/local
19
19
make
35
35
make clean
36
36
 
37
37
find . -name "*~" -exec rm {} \;
 
38
find . -name "*.bak" -exec rm {} \;
38
39
rm -rf t/test_sb/
39
40