blob: 8d92f03210ec75c408bfabb07417264da3f02ecb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/make -f
include ../source.mk
nop:
@:
build:
@:
install:
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.full.gz
sed '/^#/d; /^[ \t]*$$/d; /^\t\t/d;' src/pci.ids | gzip -9cn \
>pciids-reduced.data/usr/share/misc/pci.ids.reduced.gz
|