aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/apache-opennlp.rb
blob: 6818f3f5477e1998e1954cdb9b21f57bc843e6ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require "formula"

class ApacheOpennlp < Formula
  homepage "http://opennlp.apache.org/"
  url "http://apache.mirrors.timporter.net//opennlp/opennlp-1.5.3/apache-opennlp-1.5.3-bin.tar.gz"
  sha1 "e14b41a4f1f1ae7fd12713bbdd8452b367bfdc9e"

  def install
    prefix.install_metafiles
    libexec.install Dir['*']

    bin.write_exec_script libexec/'bin/opennlp'
  end
end