kakoune/contrib/kakoune.rb
Frank LENORMAND 2bec452006 Fix compilation on Mac OS Sierra
The `xsltproc` utility is missing some xsl files, which are now
installed on the system by the `docbook-xsl` package.

Fixes #939
2016-11-28 18:03:45 +03:00

17 lines
350 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 'docbook-xsl' => :build
depends_on 'asciidoc' => [:build, 'with-docbook-xsl']
def install
cd 'src' do
system "make", "install", "PREFIX=#{prefix}"
end
end
end