aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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