mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-10 02:21:15 +02:00
26 lines
408 B
Makefile
26 lines
408 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
PORTNAME= pciids
|
|
PORTVERSION= 20160522
|
|
CATEGORIES= misc
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Database of all known IDs used in PCI devices
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= %%DATADIR%%/pci.ids
|
|
|
|
GH_ACCOUNT= pciutils
|
|
GH_TAGNAME= eaf479c
|
|
USE_GITHUB= yes
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${DATADIR}/
|
|
${INSTALL_DATA} ${WRKSRC}/pci.ids ${STAGEDIR}${DATADIR}/
|
|
|
|
.include <bsd.port.mk>
|
|
#EOF
|