From ec0c55be78df1f089e2acca960fb1cbd6c089cee Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Thu, 10 May 2012 18:38:53 -0500 Subject: fsh: formula cleanup - Use inreplace instead of find/sed - Specify infodir - Various style nits Signed-off-by: Jack Nagel --- Library/Formula/fsh.rb | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'Library') diff --git a/Library/Formula/fsh.rb b/Library/Formula/fsh.rb index e04140eb0..8a7640c0b 100644 --- a/Library/Formula/fsh.rb +++ b/Library/Formula/fsh.rb @@ -1,15 +1,18 @@ require 'formula' class Fsh < Formula - url 'http://www.lysator.liu.se/fsh/fsh-1.2.tar.gz' homepage 'http://www.lysator.liu.se/fsh/' + url 'http://www.lysator.liu.se/fsh/fsh-1.2.tar.gz' md5 '74d7fc65044d1c9c27c6e9edbbde9c68' def install # FCNTL was deprecated and needs to be changed to fcntl - system "find . -type f -exec sed -i \"\" 's/FCNTL/fcntl/g' {} \\;" + inreplace 'fshcompat.py', 'FCNTL', 'fcntl' - system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking" + system "./configure", "--disable-debug", + "--disable-dependency-tracking", + "--prefix=#{prefix}", + "--infodir=#{info}" system "make install" cd bin do -- cgit v1.2.3