homebrew-core/Formula/pam_yubico.rb
Stuart Glenn de5dd646e1 Add universal option to pam_yubico and its dependencies
Closes Homebrew/homebrew#27766.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-03-31 12:50:56 -05:00

27 lines
732 B
Ruby

require 'formula'
class PamYubico < Formula
homepage 'http://opensource.yubico.com/yubico-pam/'
url 'https://github.com/Yubico/yubico-pam/archive/2.14.tar.gz'
sha1 'c86fd78788e6a81cadd57b23411e78bd7fab48bb'
option :universal
depends_on 'pkg-config' => :build
depends_on :autoconf
depends_on :automake
depends_on :libtool
depends_on 'libyubikey'
depends_on 'ykclient'
depends_on 'ykpers'
def install
ENV.universal_binary if build.universal?
system "autoreconf -vfi"
system "./configure", "--prefix=#{prefix}",
"--with-libyubikey-prefix=#{HOMEBREW_PREFIX}",
"--with-libykclient-prefix=#{HOMEBREW_PREFIX}"
system "make install"
end
end