homebrew-core/Formula/shakespeare.rb

16 lines
445 B
Ruby

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