diff --git a/contrib/kakoune.rb b/contrib/kakoune.rb new file mode 100644 index 00000000..3dfbbc48 --- /dev/null +++ b/contrib/kakoune.rb @@ -0,0 +1,14 @@ +require "formula" + +class Kakoune < Formula + homepage "https://github.com/mawww/kakoune" + head "https://github.com/mawww/kakoune.git" + + depends_on 'boost' + + def install + cd 'src' do + system "make", "install", "PREFIX=#{prefix}" + end + end +end