blob: 25ff459380eb7ecc944e25619d19fed2b6f0ae69 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 | class Ykclient < Formula
  homepage "https://yubico.github.io/yubico-c-client/"
  url "https://yubico.github.io/yubico-c-client/releases/ykclient-2.14.tar.gz"
  sha256 "bd7ddaa1d88ec7be323738cabdf58ff99cb6d6cd3fe937c69b52fa9b3764d362"
  bottle do
    cellar :any
    sha256 "a6bf94742e5dea65974107915a86ed3fdd97c4238279262fb6c49a153bf707da" => :yosemite
    sha256 "c80e5dbdd8e4790db32c09f7ec7ce542a1ecaa3d26818711ab1b1f4d9779b516" => :mavericks
    sha256 "1bc7d485b047e44cc7aca1530007f2480f36ddf26e1a4b5d55281ed587ade32c" => :mountain_lion
  end
  option :universal
  depends_on "pkg-config" => :build
  depends_on "help2man" => :build
  def install
    ENV.universal_binary if build.universal?
    system "./configure", "--prefix=#{prefix}"
    system "make", "install"
  end
  test do
    system "#{bin}/ykclient", "--version"
  end
end
 |