23e9a670ca
Upgrade libyubikey to version 1.9. Tested on Lion with cland and llvm from XCode-4.3.3. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
12 lines
309 B
Ruby
12 lines
309 B
Ruby
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
|