mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
705f4c7992
installing documentation files instead of abusing INSTALL_MAN.
33 lines
769 B
Makefile
33 lines
769 B
Makefile
# Created by: sethk
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= chordpack
|
|
PORTVERSION= 0.8.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://sweb.cz/dan.polansky/chordpack/
|
|
|
|
MAINTAINER= sethk@meowfishies.com
|
|
COMMENT= Script to convert ChordPro files to HTML, ASCII, and TeX
|
|
|
|
USES= shebangfix perl5 tar:tgz
|
|
SHEBANG_FILES= chordpack
|
|
USE_PERL5= run
|
|
NO_WRKSUBDIR= yes
|
|
NO_BUILD= yes
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/chordpack ${STAGEDIR}${PREFIX}/bin
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/emacs/site-lisp
|
|
${INSTALL_DATA} ${WRKSRC}/chordpro-mode.el \
|
|
${STAGEDIR}${PREFIX}/share/emacs/site-lisp
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/chordpack-documentation.html \
|
|
${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|