homebrew-core/Formula/pinentry.rb
Alexis Hildebrandt e1c518a0e0 pinentry 0.8.2
Closes Homebrew/homebrew#18605.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-03-20 10:49:34 -05:00

19 lines
637 B
Ruby

require 'formula'
class Pinentry < Formula
homepage 'http://www.gnupg.org/related_software/pinentry/index.en.html'
url 'ftp://ftp.gnupg.org/gcrypt/pinentry/pinentry-0.8.2.tar.bz2'
sha1 'eeee9e80ea02f63bdac1cb03eb1785ab2cd57f90'
depends_on 'pkg-config' => :build
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-pinentry-qt",
"--disable-pinentry-qt4",
"--disable-pinentry-gtk",
"--disable-pinentry-gtk2"
system "make install"
end
end