Files
codeql/misc/ripunzip/BUILD.ripunzip.bazel
Paolo Tranquilli ddee385f37 Ripunzip: use releases from github
This uses the ripunzip releases from github instead of building them
ourselves.
2025-11-18 17:23:59 +01:00

12 lines
303 B
Plaintext

load("@bazel_skylib//rules:native_binary.bzl", "native_binary")
native_binary(
name = "ripunzip",
src = glob(["bin/ripunzip*"])[0],
out = "ripunzip" + select({
"@platforms//os:windows": ".exe",
"//conditions:default": "",
}),
visibility = ["//visibility:public"],
)