blob: 83d8ae6ffb16abbc7cc978f00ad6f0b0892199db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# $NetBSD: Makefile,v 1.14 2013/04/24 02:20:38 rodent Exp $
#
DISTNAME= ispell.el
PKGNAME= ${EMACS_PKGNAME_PREFIX}ispell-emacs-3.6
PKGREVISION= 4
CATEGORIES= textproc
MASTER_SITES= ftp://kdstevens.com/pub/stevens/
EXTRACT_SUFX= .gz
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.eng.utah.edu/~kstevens/ispell-page.html
COMMENT= Emacs interface for ispell spell checker
INSTALLATION_DIRS= ${EMACS_LISPPREFIX:C|^${PREFIX}/||}/ispell
DEPENDS+= ispell-[0-9]*:../../textproc/ispell
DIST_SUBDIR= ${PKGNAME_NOREV:C|^xemacs-||}
WRKSRC= ${WRKDIR}
NO_CONFIGURE= yes
NO_BUILD= yes
do-install:
${INSTALL_DATA} ${WRKSRC}/ispell.el ${DESTDIR}${EMACS_LISPPREFIX}/ispell
.include "../../editors/emacs/modules.mk"
.include "../../mk/bsd.pkg.mk"
|