mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
d9db709373
This port contains two phone number conversion utilities: 1. numchar - converts a phone number to all possible combinations of digits and characters; 2. phdecode - decodes a phone number containing characters into one containing only digits. PR: 12974 Submitted by: G. Adam Stanislav <adam@whizkidtech.net>
22 lines
543 B
Makefile
22 lines
543 B
Makefile
# New ports collection makefile for: numchar
|
|
# Version required: 1.0
|
|
# Date created: 3 August 1999
|
|
# Whom: G. Adam Stanislav <adam@whizkidtech.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DISTNAME= numchar-1.0
|
|
CATEGORIES= misc
|
|
MASTER_SITES= ftp://www.whizkidtech.net/unix/
|
|
|
|
MAINTAINER= adam@whizkidtech.net
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/numchar ${PREFIX}/bin
|
|
${LN} -fs ${PREFIX}/bin/numchar ${PREFIX}/bin/phdecode
|
|
${MKDIR} ${PREFIX}/share/doc/numchar
|
|
${INSTALL_MAN} ${WRKSRC}/numchar.html ${PREFIX}/share/doc/numchar
|
|
|
|
.include <bsd.port.mk>
|