d88669c2bf
* Use a better homepage * Install to libexec instead of prefix * Write a sisc wrapper instead of appending to existing one
17 lines
430 B
Ruby
17 lines
430 B
Ruby
require 'formula'
|
|
|
|
class SiscScheme < Formula
|
|
homepage 'http://sisc-scheme.org/'
|
|
url 'http://sourceforge.net/projects/sisc/files/SISC%20Lite/1.16.6/sisc-lite-1.16.6.tar.gz'
|
|
sha1 '4572dc584f2a8e82e1a47c49ea5b9d8cf151775d'
|
|
|
|
def install
|
|
prefix.install_metafiles
|
|
libexec.install Dir['*']
|
|
(bin/'sisc').write <<-EOS.undent
|
|
#!/bin/sh
|
|
SISC_HOME=#{libexec}
|
|
exec #{libexec}/sisc "$@"
|
|
EOS
|
|
end
|
|
end
|