22 lines
493 B
Python
22 lines
493 B
Python
version = "2.72"
|
|
revision = 1
|
|
description = "GNU autoconf"
|
|
license = "GPL-3.0-or-later"
|
|
url = "https://www.gnu.org/software/autoconf/"
|
|
source = tarball(
|
|
url=f"https://ftp.gnu.org/gnu/autoconf/autoconf-{version}.tar.xz",
|
|
sha256="ba885c1319578d6c94d46e9b0dceb4014caafe2490e437a0dbca3f270a223f5a",
|
|
)
|
|
|
|
|
|
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)
|