aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDevon Stewart2013-12-06 13:21:32 -0800
committerAdam Vandenberg2013-12-08 20:47:38 -0800
commit6e991d194bed1803ec7679b2d909f394d8951dad (patch)
treefcef7302aa060a9075ab147513a69ea2c516c4f7 /Library/Formula
parent488fc1607bc58d4a5feb54083657df907f43028e (diff)
downloadhomebrew-6e991d194bed1803ec7679b2d909f394d8951dad.tar.bz2
entr 2.2
Closes #25005. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-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