findutils: use https and syntax

This commit is contained in:
Tim Biermann 2021-12-13 12:21:30 +01:00
parent 7e4465f235
commit c553348eff
Signed by: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 11 additions and 11 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/core.pub
RWRJc1FUaeVeqkjNTt5WtiuC15h1tQx0S/CSxVnbhQ9r7OxIeM0NX+vBcfs3+7J6jDmeg605XlRBZkUIy8gz4nNO0UavDvAHhQ0=
SHA256 (Pkgfile) = f866b3d787ea65d81bb9b9cf1587263866152368f89e7ae546ebf59ead1500ce
RWRJc1FUaeVeqvkA6ZW2wQF1eXW1VjCb5V4OTxMBYCJTTfLX2D7n9Li35tAEqFm2bqQiSGQbOBZhYKdCtcy+gblplYFBrgxYSAw=
SHA256 (Pkgfile) = 9abf9c5d2f12cdfe35263fae68833dda462e4dc173619961d5ad07b98d4990cd
SHA256 (.footprint) = d10651884f1a51d1638d4b7f18513cf2cf7e84994a9179220bf60d4bc1ae3586
SHA256 (findutils-4.8.0.tar.xz) = 57127b7e97d91282c6ace556378d5455a9509898297e46e10443016ea1387164

View File

@ -1,6 +1,6 @@
# Description: Basic directory searching utilities
# URL: http://www.gnu.org/software/findutils/
# Maintainer: CRUX System Team, core-ports at crux dot nu
# URL: https://www.gnu.org/software/findutils/
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=findutils
version=4.8.0
@ -8,13 +8,13 @@ release=1
source=(http://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.xz)
build() {
cd $name-$version
cd $name-$version
./configure --prefix=/usr --disable-nls
make
make DESTDIR=$PKG install
./configure --prefix=/usr --disable-nls
make
make DESTDIR=$PKG install
rm $PKG/usr/bin/{updatedb,locate}
rm $PKG/usr/share/man/man1/{updatedb.1,locate.1}
rm -r $PKG/usr/{libexec,var,share/{info,man/man5}}
rm $PKG/usr/bin/{updatedb,locate}
rm $PKG/usr/share/man/man1/{updatedb.1,locate.1}
rm -r $PKG/usr/{libexec,var,share/{info,man/man5}}
}