pkgsrc/editors/matlab-mode/Makefile
wiz c981972898 Update to 2.3.1 (previous distfile disappeared).
Changes:
Added continue to keyword list.
Added use contributed matlab-generate-latex command.
Doc comment update (New file exchange link, matlab shell switches)
Font lock of pragmas
Whitespace mode support.
Exclude block verify from save hooks.
Fixed if statement regexp for unreachable code.
Add persistent as a keyword.
Fill paragraph: Fix to handle comment at end of buffer.
matlab-shell: Fix where kill-local-variables is called.
User patch for finding the symbol at point.
Yoni Wexler contributed patch for indented tic/toc.
Block highlighting tic/toc.
font lock for tic toc.
2004-03-27 21:45:07 +00:00

38 lines
934 B
Makefile

# $NetBSD: Makefile,v 1.5 2004/03/27 21:45:07 wiz Exp $
#
DISTNAME= matlab.el
PKGNAME= matlab-mode-2.3.1
CATEGORIES= editors math
MASTER_SITES= http://www.mathworks.com/matlabcentral/files/104/
EXTRACT_SUFX=
MAINTAINER= dmcmahill@NetBSD.org
HOMEPAGE= http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=104&objectType=file
COMMENT= Matlab mode for Emacs
WRKSRC= ${WRKDIR}
EXTRACT_CMD= ${CP} ${DOWNLOADED_DISTFILE} ${WRKDIR}
DIST_SUBDIR= ${PKGNAME_NOREV}
.include "../../mk/emacs.mk"
.if ${EMACS_FLAVOR} == "emacs"
EMACS= emacs
.else
EMACS= xemacs
.endif
SRCS= matlab.el
do-build:
for f in ${SRCS}; do \
${EMACS} --no-init-file --no-site-file -batch \
-f batch-byte-compile ${WRKSRC}/$$f; \
done
do-install:
${INSTALL_DATA_DIR} ${EMACS_LISPPREFIX}/${PKGBASE}
cd ${WRKSRC} && ${INSTALL_DATA} ${SRCS} ${SRCS:.el=.elc} ${EMACS_LISPPREFIX}/${PKGBASE}
.include "../../mk/bsd.pkg.mk"