blob: 05b13c4899aafd72ad28d134e480aa3820771137 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Ykclient < Formula
url 'http://yubico-c-client.googlecode.com/files/ykclient-2.7.tar.gz'
homepage 'http://code.google.com/p/yubico-c-client/'
md5 'ffaf492498d8d57e87fbbe355d438a91'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end
|