homebrew-core/Formula/paperkey.rb
Jack Nagel 6bd3f40850 paperkey: run 'make check'
Short and sweet, and since we're dealing with PGP keys here it's a good
idea to make sure we've compiled correctly.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-11-02 22:41:25 -05:00

14 lines
390 B
Ruby

require 'formula'
class Paperkey < Formula
url 'http://www.jabberwocky.com/software/paperkey/paperkey-1.2.tar.gz'
homepage 'http://www.jabberwocky.com/software/paperkey/'
md5 '84af99e3f283337722336571c630da93'
def install
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make"
system "make check"
system "make install"
end
end