508923f461
pkglint --only "https instead of http" -r -F With manual adjustments afterwards since pkglint 19.4.4 fixed a few indentations in unrelated lines. This mainly affects projects hosted at SourceForce, as well as freedesktop.org, CTAN and GNU.
26 lines
712 B
Makefile
26 lines
712 B
Makefile
# $NetBSD: Makefile,v 1.10 2020/01/18 23:30:24 rillig Exp $
|
|
|
|
DISTNAME= cflow-1.6
|
|
PKGNAME= cflow-mode-1.6
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=cflow/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://www.gnu.org/software/cflow/
|
|
COMMENT= Emacs mode for GNU cflow output
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
.include "../../editors/emacs/modules.mk"
|
|
|
|
do-build:
|
|
${EMACS_BIN} --no-init-file -batch -f batch-byte-compile \
|
|
${WRKSRC}/elisp/cflow-mode.el
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${DESTDIR}${EMACS_LISPPREFIX}
|
|
${INSTALL_DATA} ${WRKSRC}/elisp/cflow-mode.el \
|
|
${DESTDIR}${EMACS_LISPPREFIX}
|
|
${INSTALL_DATA} ${WRKSRC}/elisp/cflow-mode.elc \
|
|
${DESTDIR}${EMACS_LISPPREFIX}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|