aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ykclient.rb
blob: 347129364ecced8fd8f6c36769b44b3037ed9aaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Ykclient < Formula
  homepage 'http://code.google.com/p/yubico-c-client/'
  url 'http://yubico-c-client.googlecode.com/files/ykclient-2.9.tar.gz'
  sha1 'b3f8e0fffec6fa078375a4adee0f7cd968ea27f0'

  def install
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end
end