diff options
| author | David Baumgold | 2014-05-28 15:27:17 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2014-06-02 22:49:17 -0700 |
| commit | bd267acf11d043b2f15ec63ff84f4189f784ef13 (patch) | |
| tree | dfc107f3c1f1eacbea5742d3ff3e7a0727957d52 | |
| parent | 4d8e2ab24fdc8462b462b25ffcdc4e5dc674bb87 (diff) | |
| download | homebrew-bd267acf11d043b2f15ec63ff84f4189f784ef13.tar.bz2 | |
ievms 0.2.0
Closes #29663.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/ievms.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/ievms.rb b/Library/Formula/ievms.rb new file mode 100644 index 000000000..8da54ded7 --- /dev/null +++ b/Library/Formula/ievms.rb @@ -0,0 +1,13 @@ +require "formula" + +class Ievms < Formula + homepage "http://xdissent.github.io/ievms/" + url "https://github.com/xdissent/ievms/archive/v0.2.0.tar.gz" + sha1 "5cf742663ccce06579968a17bb559606ff4479e2" + + depends_on "unar" + + def install + bin.install "ievms.sh" => "ievms" + end +end |
