pkgsrc/devel/haskell-mode/Makefile

34 lines
1.1 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.16 2006/03/04 21:29:15 jlam 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= pkgsrc-users@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:
2002-09-14 05:20:28 +02:00
${INSTALL_DATA_DIR} ${EMACS_LISPPREFIX}/haskell-mode
cd ${WRKSRC} && ${INSTALL_DATA} ${SRCS} ${SRCS:.el=.elc} \
2002-09-14 05:20:28 +02:00
${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"