aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBaptiste Fontaine2015-01-25 21:08:46 +0100
committerMike McQuaid2015-01-27 10:33:20 +0000
commit822763e55573e7f311d12759bd92da00e18dfd4d (patch)
tree715ca029ec04450b5b13b26d4697e2b8ac6701b8
parent57c731a324dbdb2158928713ba565038fed834a9 (diff)
downloadhomebrew-822763e55573e7f311d12759bd92da00e18dfd4d.tar.bz2
pacvim 1.1.1 (new formula)
Closes #36210. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
-rw-r--r--Library/Formula/pacvim.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/pacvim.rb b/Library/Formula/pacvim.rb
new file mode 100644
index 000000000..3deccacbd
--- /dev/null
+++ b/Library/Formula/pacvim.rb
@@ -0,0 +1,13 @@
+class Pacvim < Formula
+ homepage "https://github.com/jmoon018/PacVim"
+ url "https://github.com/jmoon018/PacVim/archive/v1.1.1.tar.gz"
+ sha1 "496ed02edba8dad15ade95352a7c6441f97fdf7a"
+ head "https://github.com/jmoon018/PacVim.git"
+
+ needs :cxx11
+
+ def install
+ ENV.cxx11
+ system "make", "install", "PREFIX=#{prefix}"
+ end
+end