2018-01-05 unidecode 1.0.22 * Move to semantic version numbering, no longer following version numbers from the original Perl module. This fixes an issue with setuptools (>= 8) and others expecting major.minor.patch format. (https://github.com/avian2/unidecode/issues/13) * Add transliterations for currency signs U+20B0 through U+20BF (thanks to Mike Swanson) * Surround transliterations of vulgar fractions with spaces to avoid incorrect combinations with adjacent numerals (thanks to Jeffrey Gerard)
19 lines
544 B
Makefile
19 lines
544 B
Makefile
# $NetBSD: Makefile,v 1.6 2018/01/28 16:36:59 wiz Exp $
|
|
|
|
DISTNAME= Unidecode-1.0.22
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=U/Unidecode/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://pypi.python.org/pypi/Unidecode/
|
|
COMMENT= ASCII transliterations of Unicode text
|
|
LICENSE= gnu-gpl-v2 # or newer
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
post-install:
|
|
cd ${DESTDIR}${PREFIX}/bin && ${MV} unidecode unidecode${PYVERSSUFFIX} || ${TRUE}
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|