Help for this page

Select Code to Download


  1. or download this
    our $VERSION = sprintf("%d.%03d", '$Name:  $' =~ /(\d+)_(\d+)/,0,0);
    
  2. or download this
    WriteMakefile(
    #    ...
        'VERSION_FROM'      => 'Module.pm' # filename to get version from
    #    ...
    );
    
  3. or download this
    > cvs tag v1_23-some-extra-info-that-gets-ignored
    
  4. or download this
    #!/bin/sh
    
    ...
    cvs export -r $1 $MODULE &&
    cd $MODULE &&
    perl Makefile.PL && make distcheck && make test && make dist && echo "
    +All done"