make: use https and syntax

This commit is contained in:
Tim Biermann 2021-12-13 12:06:32 +01:00
parent db5343ec8f
commit 8339ce6082
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
RWRJc1FUaeVeqi2A3FkAkotu7j1TDOCp1ghiW1yLgrrrOgwPTCmB10eAF6yg92spG1JBTOx79fm6iMBk/VdZX4QxZOgTc1Y3VwY=
SHA256 (Pkgfile) = 480c62dd46d94b92bdd5652a1382f565e607dd657f09738247d007eb64ec22e3
RWRJc1FUaeVeqk3C2n0efalkYK6Y//LEZA0Q/7qm8wzowkwVENQG1sBwjD7qZDhO1DaKYta4QIUJ7nu7i9YstxjdyYklX02PHwE=
SHA256 (Pkgfile) = 77e2b636119bbec14d08e9469b13516a38baa52bc19bf67a182c8bea7ed6da2d
SHA256 (.footprint) = b6da4d8d5f42687f723b196c608941bfe0f0211397dc663c56e43459f0c8be75
SHA256 (make-4.3.tar.lz) = de1a441c4edf952521db30bfca80baae86a0ff1acd0a00402999344f04c45e82

View File

@ -1,16 +1,16 @@
# Description: Controls the generation of executables and other compile-related tasks
# URL: http://www.gnu.org/software/make/
# Maintainer: CRUX System Team, core-ports at crux dot nu
# URL: https://www.gnu.org/software/make/
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=make
version=4.3
release=1
source=(http://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.lz)
source=(https://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.lz)
build() {
cd $name-$version
./configure --prefix=/usr --disable-nls
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/info
cd $name-$version
./configure --prefix=/usr --disable-nls
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/info
}