openbsd-ports/sysutils/dcled/Makefile
danj 5171d0cdfa Remove unresponsive maintainers
If somebody is removed who actually wants maintainer and either
didn't receive the mail, or didn't bother to reply to it, they are
free to send a diff to reinstate.

ok sthen@, jca@
2019-07-17 14:39:42 +00:00

38 lines
802 B
Makefile

# $OpenBSD: Makefile,v 1.8 2019/07/17 14:39:42 danj Exp $
COMMENT = userland driver for Dream Link USB LED Message Board
V = 2.2
DISTNAME = dcled-${V}
EXTRACT_SUFX = .tgz
REVISION = 0
CATEGORIES = sysutils
HOMEPAGE = http://www.last-outpost.com/~malakai/dcled/
PERMIT_PACKAGE = Yes
MASTER_SITES= http://www.last-outpost.com/~malakai/dcled/
WANTLIB += c m pthread usb-1.0
LIB_DEPENDS = devel/libusb1
NO_TEST = Yes
FONTDIR = ${PREFIX}/share/dcled
CFLAGS += -DFONTDIR=\"${FONTDIR}\"
CFLAGS += -DDCLEDVERSION=\"${V}\"
do-build:
cd ${WRKSRC} && \
${CC} ${CFLAGS} `pkg-config --cflags --libs libusb-1.0` -lm dcled.c -o dcled
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/dcled ${PREFIX}/bin
${INSTALL_DATA_DIR} ${FONTDIR}
${INSTALL_DATA} ${WRKSRC}/fonts/*.dlf ${FONTDIR}
.include <bsd.port.mk>