583bb5690b
* fixes decoding of Q-encoded UTF-8 [nkf-bug:55125] * misc test and document fixes.
30 lines
703 B
Makefile
30 lines
703 B
Makefile
# $NetBSD: Makefile,v 1.16 2011/09/09 11:01:16 obache Exp $
|
|
|
|
.include "${.CURDIR}/Makefile.common"
|
|
|
|
PKGNAME= nkf-2.12
|
|
CATEGORIES= japanese converters
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
COMMENT= Convert between various Japanese character encodings
|
|
#LICENSE= zlib-license
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
|
|
|
|
BUILD_TARGET= nkf
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/nkf ${DESTDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/nkf.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if !empty(PKGSRC_RUN_TEST:M[yY][eE][sS])
|
|
USE_TOOLS+= perl
|
|
TEST_TARGET= test
|
|
.endif
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|