kakoune/contrib/kakoune.rb
Jimmy Thrasher fd15158cf3 Add dependency on asciidoc to homebrew formula
Homebrew apparently only makes depended-on projects available
in the PATH.
2016-02-11 14:06:55 -05:00

16 lines
281 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'
def install
cd 'src' do
system "make", "install", "PREFIX=#{prefix}"
end
end
end