mirror of
https://git.freebsd.org/ports.git
synced 2025-06-01 02:46:27 -04:00
28 lines
659 B
Makefile
28 lines
659 B
Makefile
PORTNAME= ascii2binary
|
|
DISTVERSION= 2.14
|
|
PORTREVISION= 2
|
|
CATEGORIES= converters
|
|
MASTER_SITES= http://billposer.org/Software/Downloads/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Convert between textual representations of numbers and binary
|
|
WWW= https://billposer.org/Software/a2b.html
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= gettext-runtime localbase:ldflags tar:bzip2
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
LDFLAGS+= -lintl
|
|
|
|
PLIST_FILES= bin/ascii2binary \
|
|
bin/binary2ascii \
|
|
share/man/man1/ascii2binary.1.gz \
|
|
share/man/man1/binary2ascii.1.gz
|
|
|
|
pre-configure:
|
|
${REINPLACE_CMD} -e "s|/usr/local|${LOCALBASE}|" ${WRKSRC}/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|