Skip to content

Instantly share code, notes, and snippets.

@bbwharris
Last active October 20, 2015 21:49
Show Gist options
  • Save bbwharris/695f5be191628776b2c9 to your computer and use it in GitHub Desktop.
Save bbwharris/695f5be191628776b2c9 to your computer and use it in GitHub Desktop.
require 'formula'
class Stud < Formula
url 'https://github.com/bumptech/stud/tarball/a9b5aca962219ef013afaa73fec4676bb7c056a3'
version '0.3-a9b5aca962'
homepage 'https://github.com/bumptech/stud'
sha256 '448ab2d87dd69dd7db8f5c994c55b692a8748e4228865b0be5af1df41c17ca51'
depends_on 'libev'
#depends_on 'openssl'
def install
system "make PREFIX=#{prefix}"
system "make install PREFIX=#{prefix}"
end
def test
system "#{bin}/stud -h"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment