1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-09-20 17:28:14 +03:00
kakoune/contrib/kakoune.rb
2015-03-24 09:51:42 -04:00

15 lines
257 B
Ruby

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