mirror of
https://github.com/bazel-contrib/rules_foreign_cc
synced 2024-12-01 22:16:27 +00:00
c7fe8ce542
Add an example for building https://github.com/LuaJIT/LuaJIT
23 lines
703 B
Python
23 lines
703 B
Python
workspace(name = "make_luajit")
|
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
|
|
all_content = """filegroup(name = "all", srcs = glob(["**"]), visibility = ["//visibility:public"])"""
|
|
|
|
local_repository(
|
|
name = "rules_foreign_cc",
|
|
path = "../..",
|
|
)
|
|
|
|
load("@rules_foreign_cc//:workspace_definitions.bzl", "rules_foreign_cc_dependencies")
|
|
|
|
rules_foreign_cc_dependencies(register_default_tools = True)
|
|
|
|
http_archive(
|
|
name = "luajit",
|
|
build_file_content = all_content,
|
|
sha256 = "409f7fe570d3c16558e594421c47bdd130238323c9d6fd6c83dedd2aaeb082a8",
|
|
strip_prefix = "LuaJIT-2.1.0-beta3",
|
|
urls = ["https://github.com/LuaJIT/LuaJIT/archive/v2.1.0-beta3.tar.gz"],
|
|
)
|