8d8a1b3167
Closes Homebrew/homebrew#13693. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
12 lines
319 B
Ruby
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
|