24 lines
566 B
Python
24 lines
566 B
Python
import lib.cpp as cpp
|
|
from lib.make import *
|
|
|
|
version("4.4.1")
|
|
description("a tool which controls the generation of executables and other non-source files of a program from the program's source files")
|
|
maintainer("sisungo <[email protected]>")
|
|
source_url("https://ftp.gnu.org/gnu/make/make-4.4.1.tar.gz")
|
|
|
|
builddep("shortcut/c")
|
|
builddep("shortcut/autotools")
|
|
|
|
|
|
def build():
|
|
cpp.configure([f"--prefix={get_prefix('gnu-make')}"])
|
|
cpp.make()
|
|
cpp.make_install()
|
|
|
|
|
|
on_build(build)
|
|
|
|
package("gnu-make")
|
|
cpp.use_auto_pack(["bin"])
|
|
dep("semi-libc @same-arch")
|