blob: 4fd699fc4cb82f55c2e549cbce0eb0d8ddd8857c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Libyubikey < Formula
homepage 'http://code.google.com/p/yubico-c/'
url 'http://yubico-c.googlecode.com/files/libyubikey-1.9.tar.gz'
sha1 '340789bee32d8c0f2f8b2dfdc1b0be428e3140c8'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end
|