624d5e4995
Fix common misspellings in text files. It's designed primarily for checking misspelled words in source code, but it can be used with other files as well.
20 lines
552 B
Makefile
20 lines
552 B
Makefile
# $NetBSD: Makefile,v 1.1 2020/04/02 10:32:55 wiz Exp $
|
|
|
|
DISTNAME= codespell-1.16.0
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=c/codespell/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/codespell-project/codespell
|
|
COMMENT= Check code for common misspellings
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
post-install:
|
|
${MV} ${DESTDIR}${PREFIX}/bin/codespell \
|
|
${DESTDIR}${PREFIX}/bin/codespell-${PYVERSSUFFIX}
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|