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

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Philippe Coval
  • Date: 2008-04-09 13:10:00 UTC
  • Revision ID: james.westby@ubuntu.com-20080409131000-wt17z7gs045qi7cd
Tags: 1.3.9a-0ubuntu1
FIX: using mozilla-devscripts (LP: #211532)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
 
 
3
# name the package (as in debian/control) that will ship the extension
 
4
MOZ_EXTENSION_PKG := flashblock
 
5
 
 
6
# xpi.mk will auto detect the .xpi in your package. if you want to do it
 
7
# explicit, use this variable
 
8
#MOZ_XPI_FILE := yourextension.xpi
 
9
 
 
10
# xpi.mk tries to auto detect the extension manager id (em:id) from the .xpis
 
11
# install.rdf file. There might be cases where this doesn't work. use the following
 
12
# variable to explicitly define an extension ID and disable auto detection
 
13
#MOZ_EM_ID := {xxxxxxx-xxxx-xxxx}
 
14
 
 
15
# xpi.mk will run a build command before packaging an .xpi file. you can use this
 
16
# to produce an .xpi. if you define this, the clean rule will remove any .xpi file
 
17
# found in the top level directory
 
18
MOZ_XPI_BUILD_COMMAND = sh firefox-xpi.sh
 
19
 
 
20
DEB_INSTALL_DOCS_ALL := debian/MPL
 
21
 
 
22
include /usr/share/cdbs/1/rules/debhelper.mk
 
23
include /usr/share/mozilla-devscripts/xpi.mk
 
24