Skip to content
This repository was archived by the owner on Jan 16, 2025. It is now read-only.

stud 0.3-a9b5aca962 #10989

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions Library/Formula/stud.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
require 'formula'

class Stud < Formula
url 'https://github.com/bumptech/stud/tarball/a9b5aca962219ef013afaa73fec4676bb7c056a3'
version '0.3-a9b5aca962'
homepage 'https://github.com/bumptech/stud'
md5 '1517e88c8b09cfd7b333b73dcbef428d'

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