homebrew-core/Formula/libyubikey.rb
Schulze Thomas e219ed6052 libyubikey: update download link
Closes Homebrew/homebrew#20055.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-05-24 16:23:23 -05:00

12 lines
314 B
Ruby

require 'formula'
class Libyubikey < Formula
homepage 'http://yubico.github.io/yubico-c/'
url 'http://yubico.github.io/yubico-c/releases/libyubikey-1.10.tar.gz'
sha1 '796c24f6dd642d25bab782947b134ed1c79aecde'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end