ports/textproc/uni2ascii/Makefile
Emanuel Haupt 58c51e33a2 textproc/uni2ascii: Update to 4.20
Removed PORTSCOUT skipv for version 4.20. The issue with the incorrect
MD5 checksum on the upstream website has been resolved. The published
checksums are from version 4.18. This has been confirmed by the upstream
author (billposer@alum.mit.edu) via email. The author will update the
checksums in due course.
2024-07-15 14:19:54 +02:00

31 lines
726 B
Makefile

PORTNAME= uni2ascii
DISTVERSION= 4.20
CATEGORIES= textproc
MASTER_SITES= http://billposer.org/Software/Downloads/ \
LOCAL/ehaupt
MAINTAINER= ehaupt@FreeBSD.org
COMMENT= Convert between UTF-8 Unicode and 7-bit ASCII equivalents
WWW= https://billposer.org/Software/uni2ascii.html
LICENSE= GPLv3
USES= tar:bzip2
GNU_CONFIGURE= yes
MAKE_ARGS= CC="${CC}" \
CFLAGS="${CFLAGS}" \
LDFLAGS="${LDFLAGS}"
PLIST_FILES= bin/ascii2uni \
bin/uni2ascii \
share/man/man1/ascii2uni.1.gz \
share/man/man1/uni2ascii.1.gz
do-install:
.for f in ${PORTNAME} ascii2uni
${INSTALL_PROGRAM} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/${f}.1 ${STAGEDIR}${PREFIX}/share/man/man1
.endfor
.include <bsd.port.mk>