Closes Homebrew/homebrew#25005.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Devon Stewart 2013-12-06 13:21:32 -08:00 committed by Adam Vandenberg
parent 53589b9309
commit dc7a8312eb
1 changed files with 15 additions and 0 deletions

15
Formula/entr.rb Normal file
View File

@ -0,0 +1,15 @@
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