aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorXu Cheng2014-04-21 19:39:38 +0800
committerAdam Vandenberg2014-05-02 08:17:03 -0700
commit832edb36602020e55ddaf94457e4b0d0fd8ef26a (patch)
tree3e4584d896c403d5fee466bc338fff2895077335 /Library/Formula
parentf894fbec8214a19cdedd8349d60a5d7efcb783d3 (diff)
downloadhomebrew-832edb36602020e55ddaf94457e4b0d0fd8ef26a.tar.bz2
pyenv-ccache 0.0.2
Closes #28570. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/pyenv-ccache.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/pyenv-ccache.rb b/Library/Formula/pyenv-ccache.rb
new file mode 100644
index 000000000..7e32bc808
--- /dev/null
+++ b/Library/Formula/pyenv-ccache.rb
@@ -0,0 +1,16 @@
+require "formula"
+
+class PyenvCcache < Formula
+ homepage "https://github.com/yyuu/pyenv-ccache"
+ url "https://github.com/yyuu/pyenv-ccache/archive/v0.0.2.tar.gz"
+ sha1 "bd68c92315c5aa8e2d596981f0fab31e6c366137"
+
+ head "https://github.com/yyuu/pyenv-ccache.git"
+
+ depends_on "pyenv"
+
+ def install
+ ENV["PREFIX"] = prefix
+ system "./install.sh"
+ end
+end