mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
28 lines
501 B
Makefile
28 lines
501 B
Makefile
# Created by: Michael Johnson <ahze@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pciids
|
|
PORTVERSION= 20170701
|
|
CATEGORIES= misc
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Database of all known IDs used in PCI devices
|
|
|
|
LICENSE= BSD3CLAUSE GPLv2+
|
|
LICENSE_COMB= dual
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= %%DATADIR%%/pci.ids
|
|
|
|
GH_ACCOUNT= pciutils
|
|
GH_TAGNAME= 4b1dcfe
|
|
USE_GITHUB= yes
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${DATADIR}/
|
|
${INSTALL_DATA} ${WRKSRC}/pci.ids ${STAGEDIR}${DATADIR}/
|
|
|
|
.include <bsd.port.mk>
|