blob: dc2e828ba32d1f184703342b28a8ff2539e665c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
require 'formula'
class Entr < Formula
homepage 'http://entrproject.org/'
url 'http://entrproject.org/code/entr-2.9.tar.gz'
sha1 '445bc3b4ebe8aca936d2b73309df98817106a738'
bottle do
cellar :any
sha1 "088848efb975f72204ab9d5e74b7273b3a1c8bf8" => :mavericks
sha1 "31c6173d418ff64a5feb2c4a0d00ac236cde8af7" => :mountain_lion
sha1 "aef771a148d1417a0b5fdf2c4e1cd7b1fec89a5f" => :lion
end
def install
ENV['PREFIX'] = prefix
ENV['MANPREFIX'] = man
system "./configure"
system "make"
system "make install"
end
end
|