diff options
| author | nibbles 2bits | 2012-06-14 22:15:01 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-06-14 22:24:57 -0700 |
| commit | 94996548c1b329b84e284a5afb880a5be06aa79f (patch) | |
| tree | 9f420a8f91dc00b1cb9daf6a7b497450be5065d8 /Library/Formula/ykpers.rb | |
| parent | 3c22859dcd0164fe0553be0df1196204353d86f5 (diff) | |
| download | homebrew-94996548c1b329b84e284a5afb880a5be06aa79f.tar.bz2 | |
ykpers 1.6.4
Upgrade ykpers to version 1.6.4.
Add `--disable-dependency-tracking`.
Add `--with-backend=osx` to be explicit because that's the default
backend and because it might use `libusb`, and it's likely better
to be consistent across all installs by using the native osx BE.
Tested against the recent libyubikey-1.9 on Lion using clang and
llvm from XCode-4.3.3.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/ykpers.rb')
| -rw-r--r-- | Library/Formula/ykpers.rb | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Library/Formula/ykpers.rb b/Library/Formula/ykpers.rb index 04f250941..bb38dcf05 100644 --- a/Library/Formula/ykpers.rb +++ b/Library/Formula/ykpers.rb @@ -1,16 +1,18 @@ require 'formula' class Ykpers < Formula - url 'http://yubikey-personalization.googlecode.com/files/ykpers-1.6.3.tar.gz' homepage 'http://code.google.com/p/yubikey-personalization/' - md5 '585b73f18a74d85a920065abcc1d82f7' + url 'http://yubikey-personalization.googlecode.com/files/ykpers-1.6.4.tar.gz' + sha1 '491af38ed3d91548a4d470b2aa3abf88927effef' depends_on 'libyubikey' def install libyubikey_prefix = Formula.factory('libyubikey').prefix system "./configure", "--prefix=#{prefix}", - "--with-libyubikey-prefix=#{libyubikey_prefix}" + "--with-libyubikey-prefix=#{libyubikey_prefix}", + '--with-backend=osx', + '--disable-dependency-tracking' system "make install" end end |
