they change daily. Add a comment with update instructions. Daily changes are not documented, so I'm not sure what changed to the previous version. Addresses PR 34827 and joerg's complaints.
36 lines
1 KiB
Makefile
36 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.7 2006/12/08 16:59:56 wiz Exp $
|
|
#
|
|
# Update instructions:
|
|
# . bump PKGNAME to today's date
|
|
# . get distfiles from OMASTER_SITES
|
|
# . update ${DISTDIR}/${PKGNAME_NOREV} to
|
|
# ftp.NetBSD.org:/pub/NetBSD/packages/distfiles/LOCAL_PORTS/
|
|
|
|
DISTNAME= edict
|
|
PKGNAME= edict-20061208
|
|
CATEGORIES= japanese misc
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL:=${PKGNAME_NOREV}/}
|
|
OMASTER_SITES= ftp://ftp.cc.monash.edu.au/pub/nihongo/
|
|
EXTRACT_SUFX= .gz
|
|
DISTFILES= edict.gz edict_doc.html
|
|
|
|
MAINTAINER= wiz@NetBSD.org
|
|
HOMEPAGE= http://www.csse.monash.edu.au/~jwb/edict.html
|
|
COMMENT= Japanese-English dictionary file
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
DIST_SUBDIR= ${PKGNAME_NOREV}
|
|
EXTRACT_ONLY= edict.gz
|
|
|
|
NO_BUILD= yes
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/edict
|
|
${INSTALL_DATA} ${WRKSRC}/edict ${PREFIX}/share/edict/
|
|
${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/edict.gz \
|
|
${PREFIX}/share/edict
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/edict
|
|
${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/edict_doc.html \
|
|
${PREFIX}/share/doc/edict
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|