homebrew-core/Formula/entr.rb
Eric Radman 320eb16963 entr 2.6
* Reduce number of attempts to re-open files to 1 second (10 attempts)
* Wait for processes to terminate in restart mode
* Prevent interactive utilities from paging output by setting PAGER to `/bin/cat`
* First match of `/_` provides a shortcut for specifying the first file under watch
* New `-c` option invokes `clear` before running the utility
* Support Vim's `backup` option by responding to `NOTE_RENAME`

Closes Homebrew/homebrew#26204.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-01-27 19:17:33 +01:00

15 lines
327 B
Ruby

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