1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-11-10 13:25:25 +03:00
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