time: use https and syntax

This commit is contained in:
Tim Biermann 2021-12-13 11:48:28 +01:00
parent 03919e940b
commit 5ba1acc298
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
RWRJc1FUaeVeqg5tp/AhO7no3eSYWuLwxB+R0VYCChwmz8AjbcWJBFOAIZ2tZaWeiGTAehEVSOFfvoeIDsW/EODLrlwbpKtYPAc=
SHA256 (Pkgfile) = e7118726e6e906b09fa03938291b386850347d1a140332f50710ccba6d43105b
RWRJc1FUaeVeqga5CfOc7MpZ8fQwKmQBWe//8i61fdTrS33VysSLY2ns5e8PH4VfjPdLM+i8ADjMznggjrhzZ9C7bGKAKciCqAI=
SHA256 (Pkgfile) = ff9fb7cd43145932a97056ca106d369754ef8d9145e8c9d174694143d3b51d6d
SHA256 (.footprint) = 8b310b7114eb06584cce52a23c09392d3150c436eae647e89341f7f862835d10
SHA256 (time-1.9.tar.gz) = fbacf0c81e62429df3e33bda4cee38756604f18e01d977338e23306a3e3b521e

View File

@ -1,16 +1,16 @@
# Description: Measures many of the CPU resources that programs use
# URL: http://www.gnu.org/software/time/
# Maintainer: CRUX System Team, core-ports at crux dot nu
# URL: https://www.gnu.org/software/time/
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=time
version=1.9
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
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share
}