mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-15 07:56:36 +00:00
c948f928e5
Auralquiz is a simple music quiz game for GNU/Linux, using your own music files. The game plays short pieces of music files from your folders (in Ogg Vorbis, FLAC, Opus or MP3 formats), and presents a question and several answers about the current song. The fastest the answer, the more points you receive. Up to 8 people can play in a turn-based mode. In the highest difficulty level there are no answer buttons, and instead, you have to type the answer yourself. WWW: https://jancoding.wordpress.com/auralquiz/
38 lines
778 B
Makefile
38 lines
778 B
Makefile
# Created by: Dmitry Marakasov <amdmi3@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= auralquiz
|
|
PORTVERSION= 1.0.0
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= games
|
|
MASTER_SITES= SAVANNAH
|
|
|
|
MAINTAINER= amdmi3@FreeBSD.org
|
|
COMMENT= Simple music quiz game using your own music files
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libtag.so:audio/taglib
|
|
|
|
USES= qmake
|
|
USE_GL= gl
|
|
USE_QT5= core gui widgets phonon4 qmake_build buildtools_build
|
|
|
|
PORTDOCS= CHANGELOG README TODO
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|; \
|
|
s|%%MAN6PREFIX%%|${MAN6PREFIX}|' \
|
|
${WRKSRC}/Auralquiz.pro
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for f in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|