homebrew-core/Formula/oath-toolkit.rb
Jakob Schlyter 234218f4c8 oath-toolkit 1.10.5
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-02-20 21:02:08 -08:00

16 lines
506 B
Ruby

require 'formula'
class OathToolkit < Formula
homepage 'http://www.nongnu.org/oath-toolkit/'
url 'http://download.savannah.gnu.org/releases/oath-toolkit/oath-toolkit-1.10.5.tar.gz'
mirror 'http://download-mirror.savannah.gnu.org/releases/oath-toolkit/oath-toolkit-1.10.5.tar.gz'
sha1 'b3fddfbc442c7cffe854ec159466155ef6ce0cbc'
depends_on 'pkg-config' => :build
def install
system "./configure", "--prefix=#{prefix}", "--without-pam"
system "make"
system "make install"
end
end