freebsd-ports/audio/funktrackergold/Makefile
Baptiste Daroussin d51bc0de30 ncurses: partial revert 266130ce71
In many places I overlooked at the problem we were trying to solve when
libncurses is split.
2021-09-24 15:11:53 +02:00

43 lines
947 B
Makefile

# Created by: Mark Pulford <mark@kyne.com.au>
PORTNAME= funktrackergold
DISTVERSION= 1.5-2
PORTREVISION= 8
CATEGORIES= audio
MASTER_SITES= SUNSITE/apps/sound/players
MAINTAINER= ports@FreeBSD.org
COMMENT= Curses MOD/FNK music tracker
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
BROKEN_armv6= fails to compile: function definition is not allowed here
BROKEN_armv7= fails to compile: function definition is not allowed here
USES= compiler:nestedfct ncurses tar:tgz
WRKSRC= ${WRKDIR}/funkgold
MAKE_ARGS= EXTRA_LDFLAGS="-lpthread"
PORTDOCS= INSTALL
PLIST_FILES= bin/funkgold
OPTIONS_DEFINE= DOCS
.include <bsd.port.pre.mk>
.if ${COMPILER_TYPE:Mgcc}
CFLAGS+= -fnested-functions
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/funkgold ${STAGEDIR}${PREFIX}/bin
do-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for docs in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${docs} ${STAGEDIR}${DOCSDIR}
.endfor
.include <bsd.port.post.mk>