From: Alexander Barton Date: Sun, 17 Jan 2016 00:07:03 +0000 (+0100) Subject: droopy 20131121 (new formula) X-Git-Url: https://arthur.barton.de/gitweb/?p=homebrew-alex.git;a=commitdiff_plain;h=c03c8a8e8610a6f4fed0043fce452a90e0be02f0 droopy 20131121 (new formula) Signed-off-by: Alexander Barton --- diff --git a/Formula/droopy.rb b/Formula/droopy.rb new file mode 100644 index 0000000..8797538 --- /dev/null +++ b/Formula/droopy.rb @@ -0,0 +1,17 @@ +class Droopy < Formula + desc "Mini web server that let others upload files to your computer" + homepage "https://github.com/stackp/Droopy" + url "https://github.com/stackp/Droopy.git", :revision => "b7b0bb9d003aed019bc5303e854089cd3e44f64c" + version "20131121" + + depends_on :python if MacOS.version <= :snow_leopard + + def install + bin.install "droopy" + man1.install "man/droopy.1" + end + + test do + system "#{bin}/droopy", "--help" + end +end