blob: 5124f128411816402df983e870f320ba652e90d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Logentries < Formula
homepage 'https://logentries.com/doc/agent/'
url 'https://github.com/logentries/le/archive/v1.3.0.tar.gz'
sha1 '3d32c8c6a8faf9346558974310787c0dd9c3f468'
conflicts_with 'le', :because => 'both install a le binary'
def install
bin.install 'le'
end
end
|