13 lines
316 B
Ruby
13 lines
316 B
Ruby
require 'formula'
|
|
|
|
class Logentries < Formula
|
|
homepage 'https://logentries.com/doc/agent/'
|
|
url 'https://github.com/logentries/le/archive/v1.2.14.tar.gz'
|
|
sha1 'd0b8073c7d5cae990b186bacf1bb2e2d39c544a5'
|
|
|
|
conflicts_with 'le', :because => 'both install a le binary'
|
|
|
|
def install
|
|
bin.install 'le'
|
|
end
|
|
end
|