aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/shakespeare.rb
blob: 3721bb2b087738d2287637d023fd019ed528ef59 (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/'
  sha1 '17adea7bbf5e1de1a29e71b19e5271f186e9698d'

  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