Changeset 4225 for lang/perl/Config-Pit

Show
Ignore:
Timestamp:
01/08/08 21:15:07 (5 years ago)
Author:
cho45
Message:

lang/perl/Config-Pit/trunk/Rakefile,
lang/perl/Config-Pit/trunk/Makefile.PL:

Specify bin/ppit as install_script
Update Rakefile

Location:
lang/perl/Config-Pit/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/Config-Pit/trunk/Makefile.PL

    r4208 r4225  
    1010requires 'List::MoreUtils'; 
    1111 
     12install_script 'bin/ppit'; 
     13 
    1214build_requires 'Test::More'; 
    1315use_test_base; 
  • lang/perl/Config-Pit/trunk/Rakefile

    r4202 r4225  
    1616end 
    1717 
    18 file "Makefile" do 
     18desc "make install" 
     19task :install => ["Makefile"] do 
     20        sh %{sudo make install} 
     21end 
     22 
     23desc "make uninstall" 
     24task :uninstall => ["Makefile"] do 
     25        sh %{sudo make uninstall} 
     26end 
     27 
     28file "Makefile" => ["Makefile.PL"] do 
    1929        sh %{perl Makefile.PL} 
    2030end 
     31 
     32file "Makefile.PL"