29 lines
700 B
Makefile
29 lines
700 B
Makefile
# Created by: Emanuel Haupt <ehaupt@critical.ch>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= uni2ascii
|
|
PORTVERSION= 4.18
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://billposer.org/Software/Downloads/ \
|
|
CRITICAL
|
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
|
COMMENT= Convert between UTF-8 Unicode and 7-bit ASCII equivalents
|
|
|
|
LICENSE= GPLv3
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_BZIP2= yes
|
|
|
|
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
|
|
|
|
PLIST_FILES= bin/uni2ascii bin/ascii2uni man/man1/uni2ascii.1.gz \
|
|
man/man1/ascii2uni.1.gz
|
|
|
|
do-install:
|
|
.for f in ${PORTNAME} ascii2uni
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/${f}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|