kakoune/contrib/kakoune.rb
2016-05-06 14:45:46 +03:00

16 lines
291 B
Ruby

require "formula"
class Kakoune < Formula
homepage "https://github.com/mawww/kakoune"
head "https://github.com/mawww/kakoune.git"
depends_on 'boost'
depends_on 'asciidoc' => :build
def install
cd 'src' do
system "make", "install", "PREFIX=#{prefix}"
end
end
end