30 lines
523 B
TOML
30 lines
523 B
TOML
[build]
|
|
type = "autotools"
|
|
|
|
[dependencies]
|
|
build = [
|
|
"nasm",
|
|
"mtools",
|
|
"llvm",
|
|
"clang",
|
|
"git"
|
|
]
|
|
runtime = ["glibc"]
|
|
|
|
[build.flags]
|
|
no_flags = true
|
|
configure = [ "--enable-all" ]
|
|
|
|
[package]
|
|
description = "advanced, portable, multiprotocol bootloader"
|
|
homepage = "https://limine-bootloader.org/"
|
|
license = "BSD-2-Clause"
|
|
name = "limine"
|
|
version = "10.8.3"
|
|
|
|
[[source]]
|
|
extract_dir = "$name-$version"
|
|
url = "https://codeberg.org/Limine/limine.git#v$version"
|
|
sha256 = "skip"
|
|
post_extract = [ "./bootstrap" ]
|