aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorBrett Koonce2014-08-17 09:33:57 -0700
committerBrett Koonce2014-08-17 10:34:44 -0700
commit8b857ea09784d67a732031b1587d2385f15d738f (patch)
tree93ced61b3abb24fb77175020f171331f6bc196da /Library
parentb14bf760c3d5323637ec5a4b216e1200c6b6a837 (diff)
downloadhomebrew-8b857ea09784d67a732031b1587d2385f15d738f.tar.bz2
shmcat 1.7
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/shmcat.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/Library/Formula/shmcat.rb b/Library/Formula/shmcat.rb
index 70c290f76..acaffcd1f 100644
--- a/Library/Formula/shmcat.rb
+++ b/Library/Formula/shmcat.rb
@@ -1,14 +1,14 @@
-require 'formula'
+require "formula"
class Shmcat < Formula
- homepage 'http://shmcat.sourceforge.net/'
- url 'https://downloads.sourceforge.net/project/shmcat/shmcat-1.6.tar.bz2'
- sha1 '13650adef363bf9c7c97602036cf6c3241f1a86d'
+ homepage "http://shmcat.sourceforge.net/"
+ url "https://downloads.sourceforge.net/project/shmcat/shmcat-1.7.tar.bz2"
+ sha1 "30f6bc931859e1544e783edc84f137e9c4a0b5f6"
- option 'with-ftok', "Build the ftok utility"
- option 'with-nls', "Use Native Language Support"
+ option "with-ftok", "Build the ftok utility"
+ option "with-nls", "Use Native Language Support"
- depends_on 'gettext' if build.with? "nls"
+ depends_on "gettext" if build.with? "nls"
def install
args = %W[
@@ -17,7 +17,7 @@ class Shmcat < Formula
]
args << "--disable-ftok" if build.without? "ftok"
if build.with? "nls"
- gettext = Formula['gettext']
+ gettext = Formula["gettext"]
args << "--with-libintl-prefix=#{gettext.include}"
else
args << "--disable-nls"