27af90c8a6
XULRunner is a runtime environment for applications using the XML User Interface Language, XUL. It is the successor of the "Gecko" runtime environment. This package tracks 17.0.x extended support release.
25 lines
745 B
Makefile
25 lines
745 B
Makefile
# $NetBSD: xpi.mk,v 1.1 2013/01/10 16:17:09 ryoon 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
|