18 lines
440 B
Python
18 lines
440 B
Python
version = "4.4.1"
|
|
revision = 1
|
|
metadata = meta(
|
|
description = "GNU make build automation tool",
|
|
license = "GPL-3.0-or-later",
|
|
website = "https://www.gnu.org/software/make/",
|
|
)
|
|
source = tarball_source(
|
|
url = f"https://ftp.gnu.org/gnu/make/make-{version}.tar.gz",
|
|
sha256 = "?",
|
|
strip_components = 1,
|
|
)
|
|
host_deps = ["binutils", "gcc"]
|
|
|
|
configure, build, install = autotools(configure_args = [
|
|
"--without-guile",
|
|
])
|