Add homebrew head-only recipe to contrib/

This commit is contained in:
Jimmy Thrasher 2015-03-24 09:51:42 -04:00
parent 4188335b51
commit 904f08940b

14
contrib/kakoune.rb Normal file
View File

@ -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