diff options
| author | Alessio Caiazza | 2012-08-30 17:14:11 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2012-10-03 08:54:11 -0700 |
| commit | bafbc50a2a4845373357596e0666d449606eb539 (patch) | |
| tree | 0f506c20a79de9c2ec8c177d63e8eb9ec9c784f1 | |
| parent | 04a761b923aa42ba98e7f05ecb5a272304b52ec1 (diff) | |
| download | homebrew-bafbc50a2a4845373357596e0666d449606eb539.tar.bz2 | |
fon-flash-cli 1.5.6
Closes #14561.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/fon-flash-cli.rb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Library/Formula/fon-flash-cli.rb b/Library/Formula/fon-flash-cli.rb new file mode 100644 index 000000000..dcd383e70 --- /dev/null +++ b/Library/Formula/fon-flash-cli.rb @@ -0,0 +1,20 @@ +require 'formula' + +class FonFlashCli < Formula + homepage 'http://www.gargoyle-router.com/wiki/doku.php?id=fon_flash' + url 'http://www.gargoyle-router.com/downloads/src/gargoyle_1.5.6-src.tar.gz' + version '1.5.6' + sha1 'e6047eb8edb6c95ff174b8639d7291a10deccd97' + + def install + cd 'fon-flash' do + system "make fon-flash" + bin.install 'fon-flash' + prefix.install 'README.txt' + end + end + + def test + system "#{bin}/fon-flash" + end +end |
