aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pax-construct.rb
blob: 88a1d4cb7e9bc34239bc12ba790affbe2bc8892a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class PaxConstruct < Formula
  homepage 'http://wiki.ops4j.org/display/paxconstruct/Pax+Construct'
  url 'http://repo1.maven.org/maven2/org/ops4j/pax/construct/scripts/1.5/scripts-1.5.zip'
  sha1 'af7bf6d6ab4947e1b38a33e89fb1d2dbfe4ad864'

  def install
    rm_rf Dir['bin/*.bat']
    prefix.install 'bin/LICENSE', 'bin/NOTICE'
    libexec.install Dir['*']
    bin.install_symlink Dir["#{libexec}/bin/*"]
  end
end