homebrew-core/Formula/npth.rb

26 lines
699 B
Ruby
Raw Normal View History

require "formula"
class Npth < Formula
homepage "https://gnupg.org/index.html"
url "ftp://ftp.gnupg.org/gcrypt/npth/npth-1.1.tar.bz2"
sha1 "597ce74402e5790553a6273130b214d7ddd0b05d"
2014-07-01 10:48:04 +00:00
bottle do
cellar :any
2014-11-09 03:55:54 +00:00
sha1 "9c933c021a84a1fe71531f6deda2c368c0dc3e08" => :yosemite
sha1 "8eedb70363bbdded692e29e8021527a17b6cfd17" => :mavericks
sha1 "0fd048150a802f5a8f9f392faf7a55ed30eb60f7" => :mountain_lion
2014-07-01 10:48:04 +00:00
end
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