Skip to content

Commit

Permalink
[autoconf] Add autoconf v2.71 (#6582)
Browse files Browse the repository at this point in the history
  • Loading branch information
staticfloat authored Apr 14, 2023
1 parent 688557c commit 6b5a87d
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions A/autoconf/build_tarballs.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
using BinaryBuilder

name = "autoconf"
version = v"2.71"

# Collection of sources required to complete build
sources = [
ArchiveSource("https://ftp.gnu.org/gnu/autoconf/autoconf-$(version.major).$(version.minor).tar.xz",
"f14c83cfebcc9427f2c3cea7258bd90df972d92eb26752da4ddad81c87a0faa4")
]

# Bash recipe for building across all platforms
script = raw"""
cd $WORKSPACE/srcdir/autoconf*/
./configure --prefix=${prefix} --build=${MACHTYPE} --host=${target}
make -j${nproc}
make install
"""

platforms = supported_platforms()
products = [
FileProduct("bin/autoconf", :autoconf),
]

dependencies = Dependency[
]
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies; julia_compat="1.6")

0 comments on commit 6b5a87d

Please sign in to comment.