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

class Shakespeare < Formula
  url 'http://shakespearelang.sf.net/download/spl-1.2.1.tar.gz'
  homepage 'http://shakespearelang.sourceforge.net/'
  md5 'c31de8415af80819eb944a1cecadddde'

  def install
    system "make install"
    bin.install 'spl/bin/spl2c'
    include.install 'spl/include/spl.h'
    lib.install 'spl/lib/libspl.a'
    prefix.install 'NEWS'   # Also include NEWS file in prefix, why not?
  end
end