]> git.ipfire.org Git - ipfire-2.x.git/blobdiff - lfs/pciutils
Core Update 168: Ship curl
[ipfire-2.x.git] / lfs / pciutils
index 995c3c0a4201e794c05be37f6e7f61e69b91a405..e01559b1ec28b029e7ee21df00a400c732b609d0 100644 (file)
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 3.7.0
+VER        = 3.8.0
 
 THISAPP    = pciutils-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_MD5 = 51554c538b5a57b61123326e14ea28a1
+$(DL_FILE)_BLAKE2 = 7339189f7115af31ccc19663d54e12ef966fbcd75c6b6b4c28c8ddcaafa3e233313ca14300ef70100edb00f5f2e1e767af9d6527a9d836edd07b598f0a40f4f4
 
 install : $(TARGET)
 
@@ -48,10 +48,10 @@ check : $(patsubst %,$(DIR_CHK)/%,$(objects))
 
 download :$(patsubst %,$(DIR_DL)/%,$(objects))
 
-md5 : $(subst %,%_MD5,$(objects))
+b2 : $(subst %,%_BLAKE2,$(objects))
 
 ###############################################################################
-# Downloading, checking, md5sum
+# Downloading, checking, b2sum
 ###############################################################################
 
 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
@@ -60,8 +60,8 @@ $(patsubst %,$(DIR_CHK)/%,$(objects)) :
 $(patsubst %,$(DIR_DL)/%,$(objects)) :
        @$(LOAD)
 
-$(subst %,%_MD5,$(objects)) :
-       @$(MD5)
+$(subst %,%_BLAKE2,$(objects)) :
+       @$(B2SUM)
 
 ###############################################################################
 # Installation Details
@@ -80,11 +80,11 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 
        # Install headers.
        mkdir -pv /usr/include/pci
-       cd $(DIR_APP) && install -p lib/pci.h /usr/include/pci
-       cd $(DIR_APP) && install -p lib/header.h /usr/include/pci
-       cd $(DIR_APP) && install -p lib/config.h /usr/include/pci
-       cd $(DIR_APP) && install -p lib/types.h /usr/include/pci
-       cd $(DIR_APP) && install -p lib/libpci.pc /usr/lib/pkgconfig
+       cd $(DIR_APP) && install -m 644 lib/pci.h /usr/include/pci
+       cd $(DIR_APP) && install -m 644 lib/header.h /usr/include/pci
+       cd $(DIR_APP) && install -m 644 lib/config.h /usr/include/pci
+       cd $(DIR_APP) && install -m 644 lib/types.h /usr/include/pci
+       cd $(DIR_APP) && install -m 644 lib/libpci.pc /usr/lib/pkgconfig
        chmod -v 755 /usr/lib/libpci.so
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)