2011-01-05 14:09:07 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Ykclient < Formula
|
2013-05-24 17:53:51 +00:00
|
|
|
homepage 'http://yubico.github.io/yubico-c-client/'
|
|
|
|
url 'http://yubico.github.io/yubico-c-client/releases/ykclient-2.10.tar.gz'
|
|
|
|
sha1 'b8818820097bb64395e33dba988aa8bc562ac8fd'
|
2011-01-05 14:09:07 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|