pkgsrc/devel/haskell-mode/Makefile

33 lines
1.1 KiB
Makefile

# $NetBSD: Makefile,v 1.15 2006/02/05 23:08:43 joerg Exp $
DISTNAME= haskell-mode-1.44
PKGNAME= ${EMACS_PKGNAME_PREFIX}${DISTNAME}
PKGREVISION= 1
CATEGORIES= devel editors
MASTER_SITES= http://www.haskell.org/haskell-mode/
MAINTAINER= tech-pkg@NetBSD.org
HOMEPAGE= http://www.haskell.org/haskell-mode/
COMMENT= Haskell mode for Emacs
HTML= .emacs fontlock.hs indent.hs index.html installation-guide.html
SRCS= haskell-decl-scan.el haskell-doc.el haskell-font-lock.el \
haskell-ghci.el haskell-hugs.el haskell-indent.el \
haskell-mode.el haskell-simple-indent.el
do-build:
for f in ${SRCS}; do \
${EMACS_BIN} --no-init-file --no-site-file -batch \
-f batch-byte-compile ${WRKSRC}/$$f; \
done
do-install:
${INSTALL_DATA_DIR} ${EMACS_LISPPREFIX}/haskell-mode
cd ${WRKSRC} && ${INSTALL_DATA} ${SRCS} ${SRCS:.el=.elc} \
${EMACS_LISPPREFIX}/haskell-mode
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/html/haskell-mode
cd ${WRKSRC} && ${INSTALL_DATA} ${HTML} \
${PREFIX}/share/doc/html/haskell-mode
.include "../../mk/emacs.mk"
.include "../../mk/bsd.pkg.mk"