pciutils: use https and syntax

This commit is contained in:
Tim Biermann 2021-12-13 12:01:43 +01:00
parent 448b0f0a97
commit ba3dd29f9b
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
RWRJc1FUaeVequKQKZ2vZijdutzjsZp110hH0HRb6nZ5+MxzJAOpOb4JjCOzu7dwjmvmnfE2Bnw/IyOE5WICc2fETcsAyXPhfwI=
SHA256 (Pkgfile) = 36c7a0b17e2c0f7dffd96ac41daa49f6fbe35cb450e52713684ca67c53c0407a
RWRJc1FUaeVeqmEMHxA2fFMzEjfnlsktENI+MPZvJZIZYaOMEboW04JCKFLBT/xLURVbIh9EdiA+/qTU0Kl5v5hTxSXBG5m3uAM=
SHA256 (Pkgfile) = b8516595a74a884ca1740357b68b49f8324fd144f2ce116d77d4b86d697293b8
SHA256 (.footprint) = 5810d0280ce8d33c3b3964633a48f36f9a0e8c803f01c29a469e3e797ed9657d
SHA256 (pciutils-3.7.0.tar.xz) = 9d40b97be8b6a2cdf96aead5a61881d1f7e4e0da9544a9bac4fba1ae9dcd40eb

View File

@ -1,7 +1,7 @@
# Description: Library and utilities to access the PCI bus configuration registers
# URL: http://mj.ucw.cz/pciutils.shtml
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: eudev
# URL: https://mj.ucw.cz/pciutils.shtml
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: eudev
name=pciutils
version=3.7.0
@ -9,11 +9,11 @@ release=1
source=(https://www.kernel.org/pub/software/utils/pciutils/$name-$version.tar.xz)
build() {
cd $name-$version
cd $name-$version
local CONF="ZLIB=no DESTDIR=$PKG PREFIX=/usr"
local CONF="ZLIB=no DESTDIR=$PKG PREFIX=/usr"
make -j1 $CONF OPT="$CFLAGS" SHARED=yes install install-lib
make clean
make -j1 $CONF OPT="$CFLAGS" SHARED=no install install-lib
make -j1 $CONF OPT="$CFLAGS" SHARED=yes install install-lib
make clean
make -j1 $CONF OPT="$CFLAGS" SHARED=no install install-lib
}