~ubuntu-branches/ubuntu/lucid/flashblock/lucid-proposed

« back to all changes in this revision

Viewing changes to firefox-xpi.sh

  • Committer: Bazaar Package Importer
  • Author(s): Philippe Coval
  • Date: 2008-04-09 13:10:00 UTC
  • Revision ID: james.westby@ubuntu.com-20080409131000-5wd25isw94ithgp8
Tags: upstream-1.3.9a
ImportĀ upstreamĀ versionĀ 1.3.9a

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
# Simple script to package firefox extension .xpi
 
4
# Run from root directory of flashblock source
 
5
# (i.e. the dir the script lives in)
 
6
 
 
7
rm -f flashblock.xpi
 
8
 
 
9
zip -oqrX9 flashblock.jar content locale -x "*/CVS/*" "*~"
 
10
mkdir chrome
 
11
mv flashblock.jar chrome/
 
12
zip -oqrX9 flashblock.xpi install.rdf install.js chrome.manifest chrome defaults -x "*/CVS/*" "*~"
 
13
rm -f chrome/flashblock.jar
 
14
rmdir chrome