diff options
Diffstat (limited to 'games/twind/Makefile')
-rw-r--r-- | games/twind/Makefile | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/games/twind/Makefile b/games/twind/Makefile new file mode 100644 index 000000000000..0946c541d4a4 --- /dev/null +++ b/games/twind/Makefile @@ -0,0 +1,47 @@ +# New Ports collection makefile for: twind +# Date created: 2012-04-11 +# Whom: nemysis@gmx.ch +# +# $FreeBSD$ +# + +PORTNAME= twind +PORTVERSION= 1.1.0 +CATEGORIES= games +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} + +MAINTAINER= nemysis@gmx.ch +COMMENT= Match and remove all of the blocks before time runs out + +LICENSE= GPLv2 + +USE_SDL= sdl image mixer +MAKE_JOBS_SAFE= yes + +PLIST_FILES= bin/twind \ + share/pixmaps/${PORTNAME}.png + +PORTDATA= * +PORTDOCS= AUTHORS CREDITS ChangeLog NEWS README TODO + +do-build: + cd ${WRKSRC} && ${CC} -o ${PORTNAME} ${CFLAGS} \ + -DDATA_PREFIX=\"${DATADIR}/\" -DAUDIO -DLINUX \ + -lm `${SDL_CONFIG} --cflags --libs` -lSDL_mixer -lSDL_image twind.c +do-install: +# Executable + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin +# Pixmaps + ${INSTALL_DATA} ${WRKSRC}/graphics/twind.png ${PREFIX}/share/pixmaps/${PORTNAME}.png +# Data + ${MKDIR} ${DATADIR} + @(cd ${WRKSRC} && ${COPYTREE_SHARE} "graphics music sound" ${DATADIR}) +# Documentation +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} +.for f in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.mk> |