33 lines
893 B
Makefile
33 lines
893 B
Makefile
# $NetBSD: Makefile,v 1.12 2012/12/04 01:02:57 othyro Exp $
|
|
|
|
DISTNAME= firefox-wrapper-0.3
|
|
CATEGORIES= www
|
|
MASTER_SITES= # empty
|
|
DISTFILES= # empty
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
COMMENT= Firefox binary wrapper
|
|
|
|
NO_CONFIGURE= yes
|
|
NO_BUILD= yes
|
|
|
|
CONF_FILES= ${PREFIX}/share/examples/firefox-wrapper/firefox-wrapper.conf \
|
|
${PKG_SYSCONFDIR}/firefox-wrapper.conf
|
|
|
|
INSTALLATION_DIRS= bin share/examples/firefox-wrapper
|
|
|
|
SUBST_CLASSES+= etc
|
|
SUBST_STAGE.etc= post-patch
|
|
SUBST_FILES.etc= firefox firefox-wrapper.conf
|
|
SUBST_SED.etc= -e "s,_etc_,${PKG_SYSCONFDIR},g"
|
|
SUBST_SED.etc+= -e "s,_pfx_,${PREFIX},g"
|
|
|
|
do-extract:
|
|
${CP} -R ${FILESDIR} ${WRKSRC}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/firefox ${DESTDIR}${PREFIX}/bin/firefox
|
|
${INSTALL_DATA} ${WRKSRC}/firefox-wrapper.conf \
|
|
${DESTDIR}${PREFIX}/share/examples/firefox-wrapper/firefox-wrapper.conf
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|