aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMrinal Wadhwa2013-04-12 20:08:35 +0530
committerAdam Vandenberg2013-08-04 21:27:52 -0700
commit2bc8ec368b9ba0b3f9da84427312f24a80664600 (patch)
tree59c2e23d79e5ab9d8d6c8edde1a41282a31eb81a /Library/Formula
parent87db0996bd9e692efcdb5fc23e6333e07551e061 (diff)
downloadhomebrew-2bc8ec368b9ba0b3f9da84427312f24a80664600.tar.bz2
kerl 20130314
Add a new Formula to install Kerl, a tool for easily building and installing Erlang/OTP instances. Closes #19151. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/kerl.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/kerl.rb b/Library/Formula/kerl.rb
new file mode 100644
index 000000000..82f945c83
--- /dev/null
+++ b/Library/Formula/kerl.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Kerl < Formula
+ homepage 'https://github.com/spawngrid/kerl'
+ url 'https://github.com/spawngrid/kerl/archive/6cd7d5764b75efc27a53beae7c887240087e9849.zip'
+ version '20130314'
+ sha1 '6643b0f9490201edc7367121866c0030fddc53c8'
+
+ def install
+ bin.install 'kerl'
+ bash_completion.install 'bash_completion/kerl'
+ end
+end