blob: 5b86dedd8f358dd4923fb3b9ddc3d3a4f095218a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Ykclient < Formula
homepage 'http://yubico.github.io/yubico-c-client/'
url 'http://yubico.github.io/yubico-c-client/releases/ykclient-2.12.tar.gz'
sha1 '518ce53ba9ef61a619f9150778f19fad23014a9c'
depends_on 'pkg-config' => :build
depends_on 'help2man' => :build
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end
|