23 lines
518 B
Python
23 lines
518 B
Python
version = "1.17"
|
|
revision = 1
|
|
description = "GNU automake"
|
|
license = "GPL-2.0-or-later"
|
|
url = "https://www.gnu.org/software/automake/"
|
|
source = tarball(
|
|
url=f"https://ftp.gnu.org/gnu/automake/automake-{version}.tar.xz",
|
|
sha256="8920c1fc411e13b90bf704ef9db6f29d540e76d232cb3b2c9f4dc4cc599bd990",
|
|
)
|
|
host_deps = ["autoconf"]
|
|
|
|
|
|
def configure(self):
|
|
self.run(self.source_dir / "configure", f"--prefix={self.prefix}")
|
|
|
|
|
|
def build(self):
|
|
autotools_build(self)
|
|
|
|
|
|
def install(self):
|
|
autotools_install(self)
|