blob: c6dc9b6f7bd1c6fe52c93fbe504434662043fdde (
plain)
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
|
# $NetBSD: Makefile,v 1.8 2007/08/31 10:47:35 agc Exp $
#
DISTNAME= fondu_src-030428
PKGNAME= fondu-030428
CATEGORIES= converters print fonts
MASTER_SITES= http://fondu.sourceforge.net/
EXTRACT_SUFX= .tgz
MAINTAINER= manu@NetBSD.org
HOMEPAGE= http://fondu.sourceforge.net/
COMMENT= Utility to convert between Mac fonts and UNIX fonts
WRKSRC= ${WRKDIR}/fondu
GNU_CONFIGURE= YES
PKG_DESTDIR_SUPPORT= user-destdir
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
do-install:
for f in fondu dfont2res frombin tobin showfond ufond; do \
${INSTALL_PROGRAM} ${WRKSRC}/$$f ${DESTDIR}${PREFIX}/bin; \
${INSTALL_MAN} ${WRKSRC}/$$f.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1; \
done
.include "../../mk/bsd.pkg.mk"
|