autoconf: use https and syntax

This commit is contained in:
Tim Biermann 2021-12-13 12:26:43 +01:00
parent c374e7d970
commit 3991239001
Signed by: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 10 additions and 10 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/core.pub
RWRJc1FUaeVeqqLhzA1OKGBmVUwiJS0wpQZHzgIzEnmqjJC1TjMgqxvV+19cEysIZqxoO5TauvZPmLD9hsh5DrUPdm5lQz+fHwg=
SHA256 (Pkgfile) = b9ba4f010e7dd553df275c16f113771e4ad6510ca65c8140a1736d31e07012e4
RWRJc1FUaeVeqrPMpFHs/WV3i4OIEMBV68Aef4uniJ6erK+54ooaa+eqn09fs7++t6PaLpXmhYddE+3uI8mK8pbTqx5q9eZMQw8=
SHA256 (Pkgfile) = 25b2a9c82a26c481b586792dfb3188750dfd5173a54ac6e839f643464d438187
SHA256 (.footprint) = 82ab726a55251f7a8dce96f6fc9ccf18f0a8b10afdcdf76faf97fe502d1246ef
SHA256 (autoconf-2.71.tar.xz) = f14c83cfebcc9427f2c3cea7258bd90df972d92eb26752da4ddad81c87a0faa4

View File

@ -1,16 +1,16 @@
# Description: A package of M4 macros to produce scripts to automatically configure sourcecode
# URL: http://www.gnu.org/software/autoconf
# Maintainer: CRUX System Team, core-ports at crux dot nu
# URL: https://www.gnu.org/software/autoconf
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=autoconf
version=2.71
release=1
source=(http://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.xz)
source=(https://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.xz)
build () {
cd $name-$version
./configure --prefix=/usr
make
make prefix=$PKG/usr install
rm -r $PKG/usr/share/info
cd $name-$version
./configure --prefix=/usr
make
make prefix=$PKG/usr install
rm -r $PKG/usr/share/info
}