summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
Diffstat (limited to 'build')
-rwxr-xr-xbuild9
1 files changed, 6 insertions, 3 deletions
diff --git a/build b/build
index abcf4f3..8605614 100755
--- a/build
+++ b/build
@@ -7,6 +7,9 @@ build:
@:
install:
- install -D -o 0 -g 0 -m 0644 src/pci.ids \
- pciids.data/usr/share/misc/pci.ids
- gzip -9 pciids.data/usr/share/misc/pci.ids
+ install -d -o 0 -g 0 -m 0755 pciids-full.data/usr/share/misc/
+ install -d -o 0 -g 0 -m 0755 pciids-reduced.data/usr/share/misc/
+ sed '/^#/d; /^[ \t]*$$/d;' src/pci.ids | gzip -9cn \
+ >pciids-full.data/usr/share/misc/pci.ids.gz
+ sed '/^#/d; /^[ \t]*$$/d; /^\t\t/d;' src/pci.ids | gzip -9cn \
+ >pciids-reduced.data/usr/share/misc/pci.ids.gz