Skip to content

Instantly share code, notes, and snippets.

@deekthesqueak
Created December 3, 2013 22:09
Show Gist options
  • Save deekthesqueak/7778442 to your computer and use it in GitHub Desktop.
Save deekthesqueak/7778442 to your computer and use it in GitHub Desktop.
require 'formula'
class Libykneomgr < Formula
homepage ''
url 'https://github.com/Yubico/libykneomgr/archive/libykneomgr-0.0.1.tar.gz'
version '0.0.1'
sha1 '8c8754fa727d2b24f38ede74cfc22983bcc02162'
depends_on 'automake'
depends_on 'autoconf'
depends_on 'libtool'
depends_on 'gengetopt'
depends_on 'help2man'
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