1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00
freebsd-ports/graphics/founts/Makefile
Alex Kozlov 4901195b5e The Founts is a demo/program, which was inspired by Eric's Cascade.
PR:	ports/167497
Submitted by:	nemysis <nemysis@gmx.ch>
Approved by:	eadler (mentor)
2012-05-06 14:30:38 +00:00

41 lines
773 B
Makefile

# New Ports collection makefile for: founts
# Date created: 2012-05-01
# Whom: nemysis@gmx.ch
#
# $FreeBSD$
#
PORTNAME= founts
PORTVERSION= 12
CATEGORIES= graphics games
MASTER_SITES= http://www.linuxmotors.com/founts/downloads/
EXTRACT_SUFX= .tgz
MAINTAINER= nemysis@gmx.ch
COMMENT= A demo/program inspired by Erics cascade
LICENSE= GPLv2
USE_SDL= sdl
PLIST_FILES= bin/founts
PORTDOCS= Changelog README
do-build:
cd ${WRKSRC} && ${CC} -o ${PORTNAME} ${CFLAGS} \
-lm `${SDL_CONFIG} --cflags --libs` founts.c
do-install:
# Executable
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
# Documentation
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
. for f in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
. endfor
.endif
.include <bsd.port.mk>