aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/frege.rb
blob: 83b0e125d353ee364686920da2ed4c9e995767a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Frege < Formula
  homepage 'http://code.google.com/p/frege/'
  url 'http://frege.googlecode.com/files/frege3.19.112a.jar'
  version '3.19.112a'
  sha1 '882c64832054cdd668c230a4e075477218d72816'

  def install
    libexec.install Dir['*']
    bin.write_jar_script libexec/'frege3.19.112a.jar', 'fregec', '-Xss1m'
  end
end