mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-03 06:04:53 +00:00
7e012a1420
- Chase upstream move and license change - Do not install useless readme
25 lines
573 B
Makefile
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>
|