camlistore: fix audit warning

* `depends_on` (line 17) should be put before `conflicts_with` (line 15)
This commit is contained in:
Miguel Araújo 2016-08-22 21:18:07 -03:00 committed by Dominyk Tiller
parent 2613946c42
commit 15c8e900a4

View file

@ -12,12 +12,12 @@ class Camlistore < Formula
sha256 "00e43ede2522c4d4469eb0e01229b3706525b054cd7afe3e97f21fd23d9ab6a2" => :mavericks
end
conflicts_with "hello", :because => "both install `hello` binaries"
depends_on "pkg-config" => :build
depends_on "go" => :build
depends_on "sqlite"
conflicts_with "hello", :because => "both install `hello` binaries"
def install
system "go", "run", "make.go"
prefix.install "bin/README"