pkgsrc/games/exult-audio/Makefile
rillig 7a273b1698 games/*: fix alignment of variable values
pkglint -Wall -r --autofix --only aligned

After running the above command, three packages had to be adjusted
manually:

In maelstrom-x11, pkglint didn't see that a commented variable
assignment should have been re-aligned as well.

In netmaze, there was a single line that didn't align well with all the
others, but pkglint decided to adjust the whole paragraph to this single
line. The result would have been ok, but not good.

In tscp, there was a paragraph where some of the lines were indented
one space more than the others. This rule is useful when one variable
name is very long compared to the others, but not in this case.
2018-01-14 17:33:57 +00:00

31 lines
868 B
Makefile

# $NetBSD: Makefile,v 1.2 2018/01/14 17:33:58 rillig Exp $
DISTNAME= exult_audio
PKGNAME= exultaudio-1.0
CATEGORIES= games
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=exult/exult-data/}
EXTRACT_SUFX= .zip
MAINTAINER= nikkohigashi@gmail.com
HOMEPAGE= http://exult.sourceforge.net/
COMMENT= Digital music and digital wave sound effects data for Exult
LICENSE= gnu-gpl-v2
DEPENDS+= exult>=1.4.9rc1:../../games/exult
DIST_SUBDIR= ${PKGNAME_NOREV}
NO_CONFIGURE= yes
NO_BUILD= yes
EXTRACT_DIR= ${WRKDIR}/exult-data
EXULTDIR= ${DESTDIR}/${PREFIX}/share/exult
INSTALLATION_DIRS+= share/exult/music
do-install:
${INSTALL_DATA} ${EXTRACT_DIR}/*.flx ${EXULTDIR}/
${INSTALL_DATA} ${EXTRACT_DIR}/*.txt ${EXULTDIR}/
${INSTALL_DATA} ${EXTRACT_DIR}/music/*.ogg ${EXULTDIR}/music/
${INSTALL_DATA} ${EXTRACT_DIR}/music/*.txt ${EXULTDIR}/music/
.include "../../mk/bsd.pkg.mk"