homebrew-core/Formula/fsh.rb

29 lines
952 B
Ruby
Raw Normal View History

2011-03-10 05:11:03 +00:00
class Fsh < Formula
desc "Provides remote command execution"
homepage "https://www.lysator.liu.se/fsh/"
url "https://www.lysator.liu.se/fsh/fsh-1.2.tar.gz"
sha256 "9600882648966272c264cf3f1c41c11c91e704f473af43d8d4e0ac5850298826"
2015-02-22 08:42:34 +00:00
bottle do
cellar :any
2015-11-19 15:45:31 +00:00
sha256 "8a49ad906b045a293259c199fd5d1737894099c487b1bfc83fb60d18acf065ac" => :yosemite
sha256 "ed852d51f5a0a4024d4a195c9cffd604758a11a115620a3da0975b541c912770" => :mavericks
sha256 "2ddff507244ca8dc352c39d5372f13cfe42c04e19d7b1d4832ecafb58fc8d00b" => :mountain_lion
2015-02-22 08:42:34 +00:00
end
def install
# FCNTL was deprecated and needs to be changed to fcntl
inreplace "fshcompat.py", "FCNTL", "fcntl"
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}",
"--infodir=#{info}"
system "make", "install"
end
2014-01-04 13:05:39 +00:00
test do
system "fsh", "-V"
end
end