diff options
| author | Tobias C. Berner <tcberner@FreeBSD.org> | 2021-02-14 12:34:53 +0000 |
|---|---|---|
| committer | Tobias C. Berner <tcberner@FreeBSD.org> | 2021-02-14 12:34:53 +0000 |
| commit | 1cc998e19bc636df8c9cec59d03f8fccd80e033f (patch) | |
| tree | f30346f17e1cac7e07af9769397bcd0f4978fcda /misc/hwdata/Makefile | |
| parent | b9da9adcfa3d924e343a3cd3d2778a11dcdb7423 (diff) | |
Notes
Diffstat (limited to 'misc/hwdata/Makefile')
| -rw-r--r-- | misc/hwdata/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/misc/hwdata/Makefile b/misc/hwdata/Makefile new file mode 100644 index 000000000000..8601eca1bf3a --- /dev/null +++ b/misc/hwdata/Makefile @@ -0,0 +1,32 @@ +# Created by: Ting-Wei Lan <lantw44@gmail.com> +# $FreeBSD$ + +PORTNAME= hwdata +DISTVERSIONPREFIX= v +DISTVERSION= 0.344 +PORTREVISION= 2 +PORTEPOCH= 1 +CATEGORIES= misc + +MAINTAINER= desktop@FreeBSD.org +COMMENT= Database of IDs used in PCI, PNP and USB devices + +LICENSE= GPLv2+ MIT +LICENSE_COMB= dual + +USE_GITHUB= yes +GH_ACCOUNT= vcrhonek + +NO_ARCH= yes +NO_BUILD= yes + +_ID_FILES= pci.ids pnp.ids usb.ids +PLIST_FILES= ${_ID_FILES:C,^,${DATADIR}/,} + +do-install: + ${MKDIR} ${STAGEDIR}${DATADIR}/ +.for _id_file in ${_ID_FILES} + ${INSTALL_DATA} ${WRKSRC}/${_id_file} ${STAGEDIR}${DATADIR}/ +.endfor + +.include <bsd.port.mk> |
