mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-12 19:41:18 +02:00
35 lines
779 B
Makefile
35 lines
779 B
Makefile
# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
|
|
# $FreeBSD: head/sysutils/hw-probe/Makefile 536595 2020-05-26 09:00:00Z danfe $
|
|
|
|
PORTNAME= hw-probe
|
|
DISTVERSION= 1.6-beta
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
COMMENT= Probe for hardware, check operability, and find drivers
|
|
|
|
#RUN_DEPENDS= curl:ftp/curl \
|
|
# dmidecode:sysutils/dmidecode \
|
|
# hwstat:sysutils/hwstat \
|
|
# lscpu:sysutils/lscpu \
|
|
# smartctl:sysutils/smartmontools
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= linuxhw
|
|
|
|
USES= perl5
|
|
USE_PERL5= run
|
|
MAKE_ARGS= prefix=${PREFIX}
|
|
NO_BUILD= yes
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
PORTDOCS= NEWS.md README.md
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|