gperf: use https and syntax

This commit is contained in:
Tim Biermann 2021-12-13 12:19:58 +01:00
parent 4e6915381b
commit f95317cfd2
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
RWRJc1FUaeVeqmWGMuEbS1382FJXJxAOgCCqG6VB/qRS2mGtuOqq4vcAwNfgphYOU1tqKcLxOtnUa61D+35H+qQrYVTWnwShcAk=
SHA256 (Pkgfile) = a1c2a3cb831e8d7501099ef4505bb079f6eecd094c3e92029efd8d531a853cd1
RWRJc1FUaeVeqmibIDIYktENC2H0dgMNuore0L7QOmsemlLwqCRADWRBKt5rms1L17xpENJbH8RmPyLeybGkO9NEORrrFIU9ogw=
SHA256 (Pkgfile) = e93c1c4bb148ca7984bbccb3f2502a2803b472429aa8f3558ef00145b3595dbc
SHA256 (.footprint) = 53c1b18160bb2c5cb81bf2762ebf9940d65f2ace8ce32139fc3ee3da8f307a6a
SHA256 (gperf-3.1.tar.gz) = 588546b945bba4b70b6a3a616e80b4ab466e3f33024a352fc2198112cdbb3ae2

View File

@ -1,16 +1,16 @@
# Description: Perfect hash function generator
# URL: http://www.gnu.org/software/gperf/
# Maintainer: CRUX System Team, core-ports at crux dot nu
# URL: https://www.gnu.org/software/gperf/
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=gperf
version=3.1
release=1
source=(http://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.gz)
source=(https://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/{doc,info}
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/{doc,info}
}