95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
38 lines
967 B
Ruby
38 lines
967 B
Ruby
class Xspin < Formula
|
|
desc "Software verification tool (developed at Bell Labs)"
|
|
homepage "http://spinroot.com/spin/Src/index.html"
|
|
url "http://spinroot.com/spin/Src/xspin525.tcl"
|
|
version "5.2.5"
|
|
sha256 "e23d8d562e39db6fe73570e52ee895cd806d15c3e52e638299cbc1eb61289eb6"
|
|
|
|
depends_on "spin"
|
|
|
|
patch :DATA
|
|
|
|
def install
|
|
inreplace "xspin525.tcl", "CELLAR", prefix
|
|
bin.install "xspin525.tcl" => "xspin"
|
|
end
|
|
end
|
|
|
|
# manual patching is required by the spin install process
|
|
__END__
|
|
diff --git a/xspin525.tcl b/xspin525.tcl
|
|
old mode 100644
|
|
new mode 100755
|
|
index 73fc6bf..444b0ad
|
|
--- a/xspin525.tcl
|
|
+++ b/xspin525.tcl
|
|
@@ -1,8 +1,9 @@
|
|
-#!/bin/sh
|
|
+#!/usr/bin/wish -f
|
|
# the next line restarts using wish \
|
|
-exec wish c:/cygwin/bin/xspin -- $*
|
|
+exec wish CELLAR/bin/xspin -- $*
|
|
+
|
|
+ cd ;# enable to cd to home directory by default
|
|
|
|
-# cd ;# enable to cd to home directory by default
|
|
|
|
# on PCs:
|
|
# adjust the first argument to wish above with the name and
|