~ubuntu-branches/ubuntu/oneiric/enigmail/oneiric-updates

« back to all changes in this revision

Viewing changes to extensions/enigmail/package/makefile.win

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Sack
  • Date: 2010-04-10 01:42:24 UTC
  • Revision ID: james.westby@ubuntu.com-20100410014224-fbq9ui5x3b0h2t36
Tags: 2:1.0.1-0ubuntu1
* First releaase of enigmail 1.0.1 for tbird/icedove 3
  (LP: #527138)
* redo packaging from scratch 
  + add debian/make-orig target that uses xulrunner provided
    buildsystem + enigmail tarball to produce a proper orig.tar.gz
  + use debhelper 7 with mozilla-devscripts
  + use debian source format 3.0 (quilt)
  + patch enigmail to use frozen API only
    - add debian/patches/frozen_api.diff
  + patch build system to not link against -lxul - which isnt
    available for sdks produced by all-static apps like tbird
    - add debian/patches/build_system_dont_link_libxul.diff
  + add minimal build-depends to control

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!nmake
 
2
#
 
3
# The contents of this file are subject to the Mozilla Public
 
4
# License Version 1.1 (the "MPL"); you may not use this file
 
5
# except in compliance with the MPL. You may obtain a copy of
 
6
# the MPL at http://www.mozilla.org/MPL/
 
7
 
8
# Software distributed under the MPL is distributed on an "AS
 
9
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
 
10
# implied. See the MPL for the specific language governing
 
11
# rights and limitations under the MPL.
 
12
 
13
# The Original Code is Enigmail.
 
14
 
15
# The Initial Developer of the Original Code is Ramalingam Saravanan.
 
16
# Portions created by Ramalingam Saravanan <svn@xmlterm.org> are
 
17
# Copyright (C) 2001 Ramalingam Saravanan. All Rights Reserved.
 
18
 
19
# Contributor(s):
 
20
 
21
# Alternatively, the contents of this file may be used under the
 
22
# terms of the GNU General Public License (the "GPL"), in which case
 
23
# the provisions of the GPL are applicable instead of
 
24
# those above. If you wish to allow use of your version of this
 
25
# file only under the terms of the GPL and not to allow
 
26
# others to use your version of this file under the MPL, indicate
 
27
# your decision by deleting the provisions above and replace them
 
28
# with the notice and other provisions required by the GPL.
 
29
# If you do not delete the provisions above, a recipient
 
30
# may use your version of this file under either the MPL or the
 
31
# GPL.
 
32
#
 
33
 
 
34
# Makefile for package directory
 
35
 
 
36
# Specify these as parameters to the make command
 
37
XPI_MODULE      = enigmail
 
38
XPI_MODULE_VERS = 0.49.9
 
39
 
 
40
DEPTH=..\..\..
 
41
 
 
42
MODULE          = enigmail
 
43
include <$(DEPTH)\config\rules.mak>
 
44
 
 
45
XPIDLSRCS=  .\nsIEnigmail.idl     \
 
46
            $(NULL)
 
47
 
 
48
XPIFILE = $(XPI_MODULE)-$(XPI_MODULE_VERS).xpi
 
49
 
 
50
libs::
 
51
        $(MAKE_INSTALL) enigmail.js $(DIST)\bin\components
 
52
 
 
53
xpi::
 
54
        zip -r $(DIST)\bin\$(XPIFILE) install.js $(XPI_MODULE).spec
 
55
        cd $(DIST)\bin
 
56
        zip -g $(XPIFILE) \
 
57
               components\$(MODULE).dll \
 
58
               components\$(XPI_MODULE).xpt \
 
59
               components\$(XPI_MODULE).js \
 
60
               chrome\$(XPI_MODULE).jar
 
61
        echo Created $(DIST)\bin\$(XPIFILE)