blob: bacc30c71c0a78ad121434224e142599314d34ff (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# New ports collection makefile for: USA zipcodes
# Date created: 1997-12-30
# Whom: wosch
#
# $FreeBSD$
#
PORTNAME= zipcodes
PORTVERSION= 1.0
CATEGORIES= misc
MASTER_SITES= http://keyserver.kjsl.com/~jharris/distfiles/
PKGNAMEPREFIX= us-
DISTFILES= ${PORTNAME}.gz
MAINTAINER= jharris@widomaker.com
COMMENT= USA postal codes
NO_WRKSUBDIR= yes
EXTRACT_CMD= ${GZCAT}
EXTRACT_BEFORE_ARGS= # None
EXTRACT_AFTER_ARGS= > ${WRKSRC}/zipcodes
NO_BUILD= yes
PLIST_FILES= share/misc/us.zipcodes
do-install:
${INSTALL_DATA} ${WRKSRC}/zipcodes ${PREFIX}/share/misc/us.zipcodes
.include <bsd.port.mk>
|