38e3376dbc
- Update to 0.0.9 PR: ports/181209 Submitted by: Yasuhiro KIMURA <yasu utahime.org> (maintainer)
39 lines
730 B
Makefile
39 lines
730 B
Makefile
# Created by: KIMURA Yasuhiro <yasu@utahime.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= yaml-mode.el
|
|
PORTVERSION= 0.0.9
|
|
CATEGORIES= textproc elisp
|
|
PKGNAMESUFFIX= -${EMACS_PORT_NAME}
|
|
|
|
MAINTAINER= yasu@utahime.org
|
|
COMMENT= Simple major mode to edit YAML file for Emacsen
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= yoshiki
|
|
GH_PROJECT= yaml-mode
|
|
GH_TAGNAME= release-${PORTVERSION}
|
|
GH_COMMIT= 5eae0c1
|
|
|
|
USE_EMACS= yes
|
|
|
|
MAKE_ENV+= LISPDIR=${LISPDIR}
|
|
|
|
LISPDIR= ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${DOCSDIR}
|
|
.for file in Changes README
|
|
${INSTALL_MAN} ${WRKSRC}/${file} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|