d7d2bec90d
Version 4.29 26-June-2016 ------------------------- 1. Added -norc to the scripts for running tests to ensure that the user's .pmwrc file, if it exists, is ignored. 2. Running with a lot more compiler warnings turned on threw up a number of infelicities in the code. Refactoring has got rid of the compiler warnings. 3. Compiling with clang threw up a few that gcc missed; it also found a genuine bug, a misplaced ) in an expression. By pure fluke there appeared to be no way of provoking misbehaviour, because what was being checked was re-checked (correctly) later. 4. Allow ! as a modifier to notes as well as rests.
27 lines
743 B
Makefile
27 lines
743 B
Makefile
# $NetBSD: Makefile,v 1.3 2016/11/27 00:12:57 prlw1 Exp $
|
|
|
|
DISTNAME= pmw-4.29
|
|
CATEGORIES= print
|
|
MASTER_SITES= http://people.ds.cam.ac.uk/ph10/
|
|
|
|
MAINTAINER= prlw1@cam.ac.uk
|
|
HOMEPAGE= http://people.ds.cam.ac.uk/ph10/pmw.html
|
|
COMMENT= High quality music typesetting program
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
BUILD_TARGET= build
|
|
|
|
SPECPDF= ${PREFIX}/share/doc/pmw/spec.pdf
|
|
MESSAGE_SUBST+= SPECPDF=${SPECPDF}
|
|
MESSAGE_SUBST+= GS=${PREFIX}/bin/gs
|
|
MESSAGE_SUBST+= BINDIR=${PREFIX}/bin
|
|
MESSAGE_SUBST+= DATADIR=${PREFIX}/share/pmw
|
|
MESSAGE_SUBST+= MANDIR=${PREFIX}/${PKGMANDIR}
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/doc/${PKGBASE}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/spec.pdf ${DESTDIR}${SPECPDF}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|