mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-17 03:25:46 +00:00
d22fd65c3e
Database of IDs used in Plug and Play devices. This file is taken from the hwdata package (https://github.com/vcrhonek/hwdata), because the offical upstream (http://uefi.org/pnp_id_list) does not have a easy to use file. Submitted by: Ting-Wei Lan <lantw44@gmail.com>
29 lines
507 B
Makefile
29 lines
507 B
Makefile
# Created by: Ting-Wei Lan <lantw44@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pnpids
|
|
PORTVERSION= 20140917
|
|
CATEGORIES= misc
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= Database of IDs used in Plug and Play devices
|
|
|
|
LICENSE= GPLv2+ MIT
|
|
LICENSE_COMB= dual
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= ${DATADIR}/pnp.ids
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= vcrhonek
|
|
GH_PROJECT= hwdata
|
|
GH_TAGNAME= v0.308
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${DATADIR}/
|
|
${INSTALL_DATA} ${WRKSRC}/pnp.ids ${STAGEDIR}${DATADIR}/
|
|
|
|
.include <bsd.port.mk>
|