6dfd930649
Closes Homebrew/homebrew#24967. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
12 lines
314 B
Ruby
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.11.tar.gz'
|
|
sha1 'a939abc129ed66af193d979765a8d8ac59ad7c40'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|