tags:

views:

285

answers:

4

How do you create a .XPI package on a mac

A: 

see this makefile for example, a xpi is only a zip file.

RC
+2  A: 

XPI files are just ZIP-files that have been renamed with extension xpi. You can just use the file compression available through the Finder UI or use commands in terminal or automate process using makefiles or similar.

Aleksi
A: 

You can pick up any zip tools and can make xpi,

I use 7zip for that, for example

7za a -tzip myextension.xpi chrome install.rdf install.js -r -mx9
S.Mark
+1  A: 

use the xpi builder: https://addons.mozilla.org/en-US/developers/tools/builder

iddqd