aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlessio Caiazza2012-08-30 17:14:11 +0200
committerAdam Vandenberg2012-10-03 08:54:11 -0700
commitbafbc50a2a4845373357596e0666d449606eb539 (patch)
tree0f506c20a79de9c2ec8c177d63e8eb9ec9c784f1
parent04a761b923aa42ba98e7f05ecb5a272304b52ec1 (diff)
downloadhomebrew-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.rb20
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