66bfff019c
mic-paren is an extension and replacement to the packages paren and stig-paren 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.
25 lines
711 B
Makefile
25 lines
711 B
Makefile
# $NetBSD: Makefile,v 1.1 2020/01/22 00:11:01 pho Exp $
|
|
|
|
DISTNAME= mic-paren-3.13
|
|
CATEGORIES= misc
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=emacsattic/}
|
|
GITHUB_TAG= d0410c7d805c9aaf51a1bcefaaef092bed5824c4
|
|
|
|
MAINTAINER= pho@cielonegro.org
|
|
HOMEPAGE= https://melpa.org/\#/mic-paren
|
|
COMMENT= Advanced highlighting of parenthesis
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
EMACS_MODULES= base
|
|
EMACS_BUILDLINK= yes
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${EMACS_BIN} -batch -f batch-byte-compile *.el
|
|
|
|
INSTALLATION_DIRS+= ${EMACS_LISPPREFIX}
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/*.el ${DESTDIR}${EMACS_LISPPREFIX}
|
|
${INSTALL_DATA} ${WRKSRC}/*.elc ${DESTDIR}${EMACS_LISPPREFIX}
|
|
|
|
.include "../../editors/emacs/modules.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|