diff --git a/deb/BUILD b/deb/BUILD index a74f52b5..6a32ce8c 100644 --- a/deb/BUILD +++ b/deb/BUILD @@ -35,14 +35,18 @@ ARCHES = ["amd64", "arm64"] [ pkg_deb( name = "bazelisk-{}_deb".format(arch), + out = "bazelisk-{}.deb".format(arch), architecture = arch, - conflicts = ["bazel"], + conflicts = [ + "bazel", + "bazel-bootstrap", + ], data = ":bazelisk-{}_tar".format(arch), + depends = ["ca-certificates"], description_file = ":description.txt", homepage = "https://github.com/bazelbuild/bazelisk", license = "Apache-2.0", maintainer = "The Bazel Authors ", - out = "bazelisk-{}.deb".format(arch), package = "bazelisk", section = "contrib/devel", version_file = ":version.txt",