homebrew-core/Formula/ykclient.rb
Brett Koonce 8d8a1b3167 ykclient 2.8
Closes Homebrew/homebrew#13693.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-07-28 15:56:52 -07:00

12 lines
319 B
Ruby

require 'formula'
class Ykclient < Formula
homepage 'http://code.google.com/p/yubico-c-client/'
url 'http://yubico-c-client.googlecode.com/files/ykclient-2.8.tar.gz'
sha1 '91aefae12d7e13360d8c03ccd66ef1d26d1b04f9'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end