1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-03 06:04:53 +00:00
freebsd-ports/misc/bsod/Makefile
Dmitry Marakasov 7e012a1420 misc/bsod: update 0.1 → 0.2
- Chase upstream move and license change
- Do not install useless readme
2024-02-28 00:15:20 +03:00

25 lines
573 B
Makefile

PORTNAME= bsod
DISTVERSIONPREFIX=v
DISTVERSION= 0.2
CATEGORIES= misc
MAINTAINER= amdmi3@FreeBSD.org
COMMENT= Experience the authentic Microsoft Windows experience
WWW= https://github.com/folkertvanheusden/bsod
LICENSE= PD
USES= ncurses tar:tgz
USE_GITHUB= yes
GH_ACCOUNT= folkertvanheusden
PLIST_FILES= bin/${PORTNAME}
do-build:
cd ${WRKSRC} && ${CC} ${CFLAGS} -DVERSION=\"${DISTVERSION}\" -I${NCURSESINC} -L${NCURSESLIB} -lncurses -o ${PORTNAME} ${PORTNAME}.c
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.mk>