homebrew-core/Formula/ykclient.rb

13 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