blob: 655066053eb0d12e9b379a2c3c3854b60b60cb8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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'
bottle do
cellar :any
sha1 "e5cf353256f4e7ca7b18e00aeb9976eb772070e9" => :mavericks
sha1 "1b6c9c26b3cd5fd49fd9eae477b7cc2edd35e314" => :mountain_lion
sha1 "d7e5fbe2f2bbc8ac385f2b044539c686484357a4" => :lion
end
option :universal
def install
ENV.universal_binary if build.universal?
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end
|