*: Switch to python
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
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)
|
||||
Reference in New Issue
Block a user