homebrew-core/Formula/ykclient.rb
Yann Hodique ee604ef1ab yubico-c-client 2.12
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-12-05 17:10:15 -06:00

15 lines
395 B
Ruby

require 'formula'
class Ykclient < Formula
homepage 'http://yubico.github.io/yubico-c-client/'
url 'http://yubico.github.io/yubico-c-client/releases/ykclient-2.12.tar.gz'
sha1 '518ce53ba9ef61a619f9150778f19fad23014a9c'
depends_on 'pkg-config' => :build
depends_on 'help2man' => :build
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end