aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDominyk Tiller2014-11-09 03:47:43 +0000
committerJack Nagel2014-11-08 23:02:32 -0600
commit86138619bcc28201c6b6778a70b9bed6428dd2f6 (patch)
tree481bc399ee0c5e7abd1868a96fb9bee7880e2988 /Library/Formula
parentb90b00e5daad16dea68e29beda6a75d0261b58e4 (diff)
downloadhomebrew-86138619bcc28201c6b6778a70b9bed6428dd2f6.tar.bz2
npth 1.1
Version bump. Closes #34031. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/npth.rb13
1 files changed, 9 insertions, 4 deletions
diff --git a/Library/Formula/npth.rb b/Library/Formula/npth.rb
index 87d5c9457..ef870713d 100644
--- a/Library/Formula/npth.rb
+++ b/Library/Formula/npth.rb
@@ -1,9 +1,9 @@
-require 'formula'
+require "formula"
class Npth < Formula
- homepage 'http://lwn.net/Articles/496268/'
- url 'ftp://ftp.gnupg.org/gcrypt/npth/npth-0.91.tar.bz2'
- sha1 'bb10db9f043fb63424162b6da6969af9082e6fa0'
+ homepage "https://gnupg.org/index.html"
+ url "ftp://ftp.gnupg.org/gcrypt/npth/npth-1.1.tar.bz2"
+ sha1 "597ce74402e5790553a6273130b214d7ddd0b05d"
bottle do
cellar :any
@@ -14,7 +14,12 @@ class Npth < Formula
def install
system "./configure", "--disable-dependency-tracking",
+ "--disable-silent-rules",
"--prefix=#{prefix}"
system "make", "install"
end
+
+ test do
+ system "#{bin}/npth-config", "--version"
+ end
end