blob: 5f55422fa8b04ea959ffd581196ace20efbb2ac4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/make -f
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
|