Skip to content

Instantly share code, notes, and snippets.

@sigma
Created December 5, 2013 03:22
Show Gist options
  • Save sigma/7799637 to your computer and use it in GitHub Desktop.
Save sigma/7799637 to your computer and use it in GitHub Desktop.
homebrew formula for yubikey-personalization
require 'formula'
class YubikeyPersonalization < Formula
homepage 'http://yubico.github.io/yubico-personalization/'
url 'http://yubico.github.io/yubico-personalization/releases/yubikey-personalization-1.14.1.tar.gz'
sha1 'c5e294b28e56e39f51e8482c44b323d79e73aa9b'
def install
system "autoreconf", "--install"
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment