blob: 423a795605b679e41d38525589d6768050d9c311 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
class Libyubikey < Formula
homepage "http://yubico.github.io/yubico-c/"
url "https://developers.yubico.com/yubico-c/Releases/libyubikey-1.12.tar.gz"
sha1 "6a73d548e61f0b622a9447917f03c78686ab386d"
bottle do
cellar :any
sha1 "220ecad49555d9b8fb07f27c45114d22d6d2c07a" => :yosemite
sha1 "554afeb53a8ea2cd5e94da98dee63107cb4f555a" => :mavericks
sha1 "131b7d2a109089877855f53eaf7784fe480afc8d" => :mountain_lion
end
option :universal
def install
ENV.universal_binary if build.universal?
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end
|