mirror of
https://github.com/openbsd/ports.git
synced 2026-06-18 07:24:23 +02:00
30 lines
570 B
Makefile
30 lines
570 B
Makefile
COMMENT = hardware probe tool
|
|
CATEGORIES = sysutils
|
|
|
|
GH_ACCOUNT = linuxhw
|
|
GH_PROJECT = hw-probe
|
|
GH_TAGNAME = 1.6
|
|
|
|
MAINTAINER = David Dahlberg <david+bsd@dahlberg.cologne>
|
|
|
|
# BSD-4 or LGPLv2.1+
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
RUN_DEPENDS = net/curl \
|
|
sysutils/lscpu \
|
|
sysutils/pciutils \
|
|
sysutils/smartmontools \
|
|
sysutils/usbutil \
|
|
sysutils/usbutils
|
|
|
|
.if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "i386"
|
|
RUN_DEPENDS += sysutils/dmidecode
|
|
.endif
|
|
|
|
FAKE_FLAGS = prefix=${PREFIX} tool_dir=${DESTDIR}${PREFIX}/sbin
|
|
|
|
NO_BUILD = Yes
|
|
NO_TEST = Yes
|
|
|
|
.include <bsd.port.mk>
|