aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pam_yubico.rb
blob: 1a6dd19ff3ce445d8a281340a269601604f37e3c (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
require "formula"

class PamYubico < Formula
  homepage "http://opensource.yubico.com/yubico-pam/"
  url "https://github.com/Yubico/yubico-pam/archive/2.16.tar.gz"
  sha1 "e0724a433a2c84b303fdb28efdda023349a27193"

  option :universal

  depends_on "pkg-config" => :build
  depends_on "autoconf" => :build
  depends_on "automake" => :build
  depends_on "libtool" => :build
  depends_on "libyubikey"
  depends_on "ykclient"
  depends_on "ykpers"

  def install
    ENV.universal_binary if build.universal?

    system "autoreconf", "-fvi"
    system "./configure", "--prefix=#{prefix}",
                          "--with-libyubikey-prefix=#{Formula["libyubikey"].opt_prefix}",
                          "--with-libykclient-prefix=#{Formula["ykclient"].opt_prefix}"
    system "make install"
  end
end