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

class Ykclient < Formula
  url 'http://yubico-c-client.googlecode.com/files/ykclient-2.3.tar.gz'
  homepage 'http://code.google.com/p/yubico-c-client/'
  md5 '7de70fb19e1a1857689afaec74def7fb'

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