homebrew-core/Formula/pam_yubico.rb

24 lines
665 B
Ruby
Raw Normal View History

require 'formula'
class PamYubico < Formula
2013-11-13 07:00:51 +00:00
homepage 'http://opensource.yubico.com/yubico-pam/'
url 'https://github.com/Yubico/yubico-pam/archive/2.14.tar.gz'
sha1 'c86fd78788e6a81cadd57b23411e78bd7fab48bb'
depends_on 'pkg-config' => :build
2013-11-13 06:39:44 +00:00
depends_on :autoconf
depends_on :automake
depends_on :libtool
depends_on 'libyubikey'
depends_on 'ykclient'
depends_on 'ykpers'
def install
2013-11-13 06:39:44 +00:00
system "autoreconf -vfi"
system "./configure", "--prefix=#{prefix}",
"--with-libyubikey-prefix=#{HOMEBREW_PREFIX}",
"--with-libykclient-prefix=#{HOMEBREW_PREFIX}"
system "make install"
end
end