mic-paren.el is an extension and replacement to the packages paren.el and stig-paren.el for Emacs. When mic-paren is active Emacs normal parenthesis matching is deactivated. Instead parenthesis matching will be performed as soon as the cursor is positioned at a parenthesis. The matching parenthesis (or the entire expression between the parentheses) is highlighted until the cursor is moved away from the parenthesis.
27 lines
798 B
Makefile
27 lines
798 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2008/07/17 00:19:26 phonohawk Exp $
|
|
#
|
|
|
|
DISTNAME= mic-paren
|
|
PKGNAME= mic-paren-3.7
|
|
CATEGORIES= editors
|
|
MASTER_SITES= http://www.emacswiki.org/cgi-bin/emacs/download/
|
|
EXTRACT_SUFX= .el
|
|
|
|
MAINTAINER= pho@cielonegro.org
|
|
HOMEPAGE= http://www.emacswiki.org/cgi-bin/wiki/${DISTNAME}.el
|
|
COMMENT= Advanced highlighting of parenthesis
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
USE_LANGUAGES= # none
|
|
MESSAGE_SUBST+= LISPDIR=${EMACS_LISPPREFIX:Q}
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${EMACS_BIN} -batch -f batch-byte-compile ${DISTNAME}.el
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${DESTDIR}${EMACS_LISPPREFIX}
|
|
${INSTALL_DATA} ${WRKSRC}/${DISTNAME}.el ${DESTDIR}${EMACS_LISPPREFIX}
|
|
${INSTALL_DATA} ${WRKSRC}/${DISTNAME}.elc ${DESTDIR}${EMACS_LISPPREFIX}
|
|
|
|
.include "../../mk/emacs.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|