mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
d9f5fe600f
Added support for Lua 5 Additional font-lock and highlighting tweaks Full diff is at http://people.freebsd.org/~pav/lua-mode.el.diff PR: ports/65001 Submitted by: Andrey Slusar <vasallia@ukr.net>
39 lines
943 B
Makefile
39 lines
943 B
Makefile
# New ports collection makefile for: lua-mode.el
|
|
# Date created: 4 March 2004
|
|
# Whom: Josh Elsasser <jre@vineyard.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= lua-mode.el
|
|
PORTVERSION= 1.26
|
|
PORTREVISION= 1
|
|
CATEGORIES= lang elisp
|
|
MASTER_SITES= http://lua-users.org/files/wiki_insecure/editors/
|
|
DISTNAME= lua-mode.el
|
|
EXTRACT_SUFX= # empty
|
|
EXTRACT_ONLY= # empty
|
|
|
|
MAINTAINER= jre@vineyard.net
|
|
COMMENT= Emacs/XEmacs major mode for editing Lua scripts
|
|
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
|
|
EMACSLISPDIR= ${PREFIX}/share/emacs/site-lisp
|
|
XEMACSLISPDIR= ${PREFIX}/lib/xemacs/site-lisp
|
|
|
|
PLIST_FILES= share/emacs/site-lisp/lua-mode.el lib/xemacs/site-lisp/lua-mode.el
|
|
PLIST_DIRS= lib/xemacs/site-lisp lib/xemacs
|
|
|
|
do-install:
|
|
${MKDIR} ${EMACSLISPDIR}
|
|
${MKDIR} ${XEMACSLISPDIR}
|
|
${INSTALL_DATA} ${_DISTDIR}/${DISTNAME} ${EMACSLISPDIR}/lua-mode.el
|
|
${LN} -sf ${EMACSLISPDIR}/lua-mode.el ${XEMACSLISPDIR}
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|