4b9d53e4b4
basE91 is an advanced method for encoding binary data as ASCII characters. It is similar to UUencode or base64, but is more efficient. The overhead produced by basE91 depends on the input data. It amounts at most to 23% (versus 33% for base64) and can range down to 14%, which typically occurs on 0-byte blocks. This makes basE91 very useful for transferring larger files over binary unsafe connections like e-mail or terminal lines. WWW: http://base91.sourceforge.net/ PR: 238202 Submitted by: takefu@airport.fm Reviewed by: miwi, tcberner Differential Revision: https://reviews.freebsd.org/D20803
24 lines
559 B
Makefile
24 lines
559 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= base91
|
|
PORTVERSION= 0.6.0
|
|
CATEGORIES= converters
|
|
MASTER_SITES= SF/${PORTNAME}/basE91/${PORTVERSION}/
|
|
|
|
MAINTAINER= takefu@airport.fm
|
|
COMMENT= Utility to encode and decode base91 files
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
# INSTALL_DATA is only used to install documentation related files
|
|
MAKE_ENV+= INSTALL_DATA="${INSTALL_MAN}" INSTALL_PROGRAM="${INSTALL_PROGRAM}"
|
|
|
|
PLIST_FILES= bin/b91dec \
|
|
bin/b91enc \
|
|
bin/base91 \
|
|
man/man1/b91dec.1.gz \
|
|
man/man1/b91enc.1.gz \
|
|
man/man1/base91.1.gz
|
|
|
|
.include <bsd.port.mk>
|