mirror of
https://git.freebsd.org/ports.git
synced 2025-05-07 03:16:44 -04:00
This is go-mode, the Emacs mode for editing Go code. It is a complete rewrite of the go-mode that shipped with Go 1.0.3 and before, and was part of Go 1.1 until Go 1.3. Beginning with Go 1.4, editor integration will not be part of the Go distribution anymore, making this repository the canonical place for go-mode. PR: 276329
32 lines
657 B
Makefile
32 lines
657 B
Makefile
PORTNAME= go-mode.el
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 1.6.0
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= pat@patmaddox.com
|
|
COMMENT= Emacs mode for the Go programming language
|
|
WWW= https://github.com/dominikh/go-mode.el
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
USES= emacs
|
|
EMACS_NO_DEPENDS= yes
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= dominikh
|
|
GH_PROJECT= go-mode.el
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/*.el ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR}
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|