aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorErwann Mest2014-05-24 16:36:20 +0200
committerAdam Vandenberg2014-05-26 18:58:18 -0700
commit42708506ded22e56570adece7c42bad928055f46 (patch)
tree99a6dbddc957e0da39351498dbf0ea7f1071dcc6 /Library
parente2ed77e058060ec6da080ed492ba591e09abbf0e (diff)
downloadhomebrew-42708506ded22e56570adece7c42bad928055f46.tar.bz2
Mozilla add-on SDK 1.16
Closes #29552. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/mozilla-addon-sdk.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/mozilla-addon-sdk.rb b/Library/Formula/mozilla-addon-sdk.rb
new file mode 100644
index 000000000..77363fd45
--- /dev/null
+++ b/Library/Formula/mozilla-addon-sdk.rb
@@ -0,0 +1,12 @@
+require "formula"
+
+class MozillaAddonSdk < Formula
+ homepage "https://developer.mozilla.org/en-US/Add-ons/SDK"
+ url "http://ftp.mozilla.org/pub/mozilla.org/labs/jetpack/addon-sdk-1.16.zip"
+ sha1 "75cae8e46f685e5d7995bb83a50ee2bdd8bec2cc"
+
+ def install
+ libexec.install Dir["*"]
+ bin.install_symlink "#{libexec}/bin/cfx"
+ end
+end