homebrew-core/Formula/ykclient.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

19 lines
462 B
Ruby

require 'formula'
class Ykclient < Formula
homepage 'http://yubico.github.io/yubico-c-client/'
url 'http://yubico.github.io/yubico-c-client/releases/ykclient-2.12.tar.gz'
sha1 '518ce53ba9ef61a619f9150778f19fad23014a9c'
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
end