aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2014-09-02 15:24:09 +0100
committerMike McQuaid2014-09-02 15:24:09 +0100
commit14f915b2d9c8024fdefde30bc530c1053f78a485 (patch)
treea9f4cd304946ea5de7e82d9f9c637e5d882d9e47 /Library
parenta31aee762c6479ce7bf65353d156a55d3eb6e069 (diff)
downloadhomebrew-14f915b2d9c8024fdefde30bc530c1053f78a485.tar.bz2
lv: general cleanup
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/lv.rb20
1 files changed, 10 insertions, 10 deletions
diff --git a/Library/Formula/lv.rb b/Library/Formula/lv.rb
index 81c9db829..5ee701345 100644
--- a/Library/Formula/lv.rb
+++ b/Library/Formula/lv.rb
@@ -1,10 +1,10 @@
-require 'formula'
+require "formula"
class Lv < Formula
- homepage 'http://www.ff.iij4u.or.jp/~nrt/lv/'
- url 'http://www.ff.iij4u.or.jp/~nrt/freeware/lv451.tar.gz'
- version '4.51'
- sha1 '1a70299c27aa317a436976a557853858db4dcb5f'
+ homepage "http://www.ff.iij4u.or.jp/~nrt/lv/"
+ url "http://www.ff.iij4u.or.jp/~nrt/freeware/lv451.tar.gz"
+ version "4.51"
+ sha1 "1a70299c27aa317a436976a557853858db4dcb5f"
bottle do
sha1 "077f8feee1b78425a38f1775cfa0bba5b5334569" => :mavericks
@@ -17,15 +17,15 @@ class Lv < Formula
end
def install
- cd 'build' do
+ cd "build" do
system "../src/configure", "--prefix=#{prefix}"
system "make"
- bin.install 'lv'
- bin.install_symlink 'lv' => 'lgrep'
+ bin.install "lv"
+ bin.install_symlink "lv" => "lgrep"
end
- man1.install 'lv.1'
- (lib + 'lv').install 'lv.hlp'
+ man1.install "lv.1"
+ (lib+"lv").install "lv.hlp"
end
end