diff options
| author | Jeduan Cornejo | 2015-02-15 16:01:15 -0600 |
|---|---|---|
| committer | Mike McQuaid | 2015-02-18 13:34:49 +0000 |
| commit | 5a819e33291c237c7cb568c1dc0bc965886204c1 (patch) | |
| tree | 020c983e94ad1bdcaf5ea4eb1a922e979c7f2b8c /Library | |
| parent | 01bd6c51f2343556bb8597389504c6d484bda1dd (diff) | |
| download | homebrew-5a819e33291c237c7cb568c1dc0bc965886204c1.tar.bz2 | |
wifi-password 0.1.0 (new formula)
Closes #36840.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/wifi-password.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/wifi-password.rb b/Library/Formula/wifi-password.rb new file mode 100644 index 000000000..42d9cda9e --- /dev/null +++ b/Library/Formula/wifi-password.rb @@ -0,0 +1,13 @@ +class WifiPassword < Formula + homepage "https://github.com/rauchg/wifi-password" + url "https://github.com/rauchg/wifi-password/archive/0.1.0.tar.gz" + sha1 "041331abc6667d736093da43fd2afdb5bbfc57d5" + + def install + bin.install "wifi-password.sh" => "wifi-password" + end + + test do + system "#{bin}/wifi-password", "--version" + end +end |
