9637f7852e
pkglint -r --network --only "migrate" As a side-effect of migrating the homepages, pkglint also fixed a few indentations in unrelated lines. These and the new homepages have been checked manually.
28 lines
840 B
Makefile
28 lines
840 B
Makefile
# $NetBSD: Makefile,v 1.5 2020/01/26 17:32:18 rillig Exp $
|
|
#
|
|
|
|
DISTNAME= uni2ascii-4.18
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://billposer.org/Software/Downloads/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= bartosz.kuzma@gmail.com
|
|
HOMEPAGE= https://billposer.org/Software/uni2ascii.html
|
|
COMMENT= Convert between UTF-8 Unicode and 7-bit ASCII equivalents
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
BROKEN_GETTEXT_DETECTION= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/ascii2uni ${DESTDIR}${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/uni2ascii ${DESTDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/ascii2uni.1 \
|
|
${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
|
|
${INSTALL_MAN} ${WRKSRC}/uni2ascii.1 \
|
|
${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
|
|
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|