pkgsrc/devel/xulrunner/xpi.mk
bsiegert d8ec45cc9e POSIX says that the target directory for "pax -rw" must exist. The pax
implementation in MirBSD enforces this.
Use ${MKDIR} to create the target directory before running pax.
Unbreaks things like firefox-l10n and friends on MirBSD.
2012-04-08 16:44:40 +00:00

25 lines
748 B
Makefile

# $NetBSD: xpi.mk,v 1.2 2012/04/08 16:44:40 bsiegert Exp $
#
# common logic for repackaging mozilla extensions (.xpi files)
# Used by the {firefox,seamonkey,thunderbird}-l10n packages.
USE_TOOLS+= unzip pax
post-extract: extract-xpi
.PHONY: extract-xpi
extract-xpi:
.for f in ${XPI_FILES}
@${MKDIR} ${WRKDIR}/${f:S/.xpi//} && cd ${WRKDIR}/${f:S/.xpi//} && ${UNZIP_CMD} -aqo "${WRKDIR}/${f}"
.endfor
do-install: install-xpi
.PHONY: install-xpi
install-xpi:
.for f in ${XPI_FILES}
id=$$(${AWK} '/em:id=/ {sub("^.*em:id=\"", "");sub("\".*$$","");print $$0}' < ${WRKDIR}/${f:S/.xpi//}/install.rdf); \
${MKDIR} ${DESTDIR}${EXTENSIONS_DIR}/$${id} && \
cd ${WRKDIR}/${f:S/.xpi//} && \
pax -rw . ${DESTDIR}${EXTENSIONS_DIR}/$${id}
.endfor