Upgrade to vte-0.38.2
[hvlinux.git] / stage3 / pkg / pciutils
index d34ae77..9bddc02 100644 (file)
@@ -2,18 +2,19 @@
 
 hvbuild()
 {
-    cd ${LFS_TMP}/${PACKAGE}
+    # ZLIB=no: Prevents compression of the pci.ids file.
+    make PREFIX=/usr             \
+        SHAREDIR=/usr/share/misc \
+        MANDIR=/usr/share/man    \
+        SHARED=yes               \
+        ZLIB=no                  \
+        all
 
-    # ZLIB=no: Prevents compression of the pci.ids file which is needed by HAL.
-    make PREFIX=/usr ZLIB=no
-
-    make PREFIX=/usr install
-
-    # Some packages require the PCI static library:
-    make PREFIX=/usr install-lib
-}
-
-hvbuild_post()
-{
-    install -m644 ${SCRDIR}/misc/update-pciids /etc/fcron/fcron.d
+    # install-lib: for packages that require the PCI static library
+    make PREFIX=/usr             \
+        SHAREDIR=/usr/share/misc \
+        MANDIR=/usr/share/man    \
+        SHARED=yes               \
+        ZLIB=no                  \
+        install install-lib
 }