aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/entr.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/entr.rb b/Library/Formula/entr.rb
new file mode 100644
index 000000000..c834e3a9b
--- /dev/null
+++ b/Library/Formula/entr.rb
@@ -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