aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ykclient.rb
blob: 1dae822053c320d06395c633cb73e61445e45300 (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.8.tar.gz'
  sha1 '91aefae12d7e13360d8c03ccd66ef1d26d1b04f9'

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