Welcome to the "trac"-ing site of soap4r!
[soap4r] [httpclient] [openpgp4u] [pkcs1] [logger] [csv] [vtr]

Changeset 265

Show
Ignore:
Timestamp:
07/14/01 19:44:12 (7 years ago)
Author:
nakahiro
Message:

Added urb installation.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/install.rb

    r167 r265  
    1616 
    1717begin 
     18  unless FileTest.directory?( "lib/soap" ) 
     19    raise RuntimeError.new( "'lib/soap' not found." ) 
     20  end 
     21 
     22  unless FileTest.directory?( "redist" ) 
     23    raise RuntimeError.new( "'redist' not found." ) 
     24  end 
     25 
    1826  File.mkpath DSTPATH + "/soap", true  
    19    
    2027  Dir["lib/soap/*.rb"].each do |name| 
    2128    File.install name, "#{DSTPATH}/soap/#{File.basename name}", 0644, true 
     
    2633  end 
    2734 
     35  File.mkpath DSTPATH + "/urb", true  
     36  Dir["redist/urb/*.rb"].each do |name| 
     37    File.install name, "#{DSTPATH}/urb/#{File.basename name}", 0644, true 
     38  end 
     39 
    2840rescue  
    2941  puts "install failed!"