homebrew-core/Formula/entr.rb

16 lines
327 B
Ruby
Raw Normal View History

require 'formula'
class Entr < Formula
homepage 'http://entrproject.org/'
url 'http://entrproject.org/code/entr-2.2.tar.gz'
sha1 '71eedf5d9397a08a231f0ab400f5aeec4f77571b'
def install
ENV['PREFIX'] = prefix
ENV['MANPREFIX'] = man
system "./configure"
system "make"
system "make install"
end
end