]> code.delx.au - gnu-emacs/blob - nt/zipdist.bat
Merge from emacs-23
[gnu-emacs] / nt / zipdist.bat
1 @echo off
2 rem Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
3 rem Free Software Foundation, Inc.
4
5 rem Author: Christoph Scholtes cschol2112 at gmail.com
6
7 rem This file is part of GNU Emacs.
8
9 rem GNU Emacs is free software: you can redistribute it and/or modify
10 rem it under the terms of the GNU General Public License as published by
11 rem the Free Software Foundation, either version 3 of the License, or
12 rem (at your option) any later version.
13
14 rem GNU Emacs is distributed in the hope that it will be useful,
15 rem but WITHOUT ANY WARRANTY; without even the implied warranty of
16 rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 rem GNU General Public License for more details.
18
19 rem You should have received a copy of the GNU General Public License
20 rem along with GNU Emacs. If not, see http://www.gnu.org/licenses/.
21
22 SETLOCAL
23 rem arg 1: Emacs version number
24 set EMACS_VER=%1
25
26 set TMP_DIST_DIR=emacs-%EMACS_VER%
27
28 rem Check, if 7zip is installed and available on path
29 :ZIP_CHECK
30 7z
31 if %ERRORLEVEL% NEQ 0 goto :ZIP_ERROR
32 goto ZIP_DIST
33
34 :ZIP_ERROR
35 echo.
36 echo ERROR: Make sure 7zip is installed and available on the Windows Path!
37 goto EXIT
38
39 rem Build distributions
40 :ZIP_DIST
41 rem Build and verify full distribution
42 7z a -bd -tZIP -mx=9 -x!.bzrignore -x!.gitignore -xr!emacs.mdp -xr!*.pdb -xr!*.opt -xr!*~ -xr!CVS -xr!.arch-inventory emacs-%EMACS_VER%-bin-i386.zip %TMP_DIST_DIR%
43 7z t emacs-%EMACS_VER%-bin-i386.zip
44 rem Build and verify binary only distribution
45 7z a -bd -tZIP -mx=9 -x!.bzrignore -x!.gitignore -xr!emacs.mdp -xr!*.pdb -xr!*.opt -xr!*~ -xr!CVS -xr!.arch-inventory emacs-%EMACS_VER%-barebin-i386.zip %TMP_DIST_DIR%/README.W32 %TMP_DIST_DIR%/bin %TMP_DIST_DIR%/etc/DOC-X %TMP_DIST_DIR%/COPYING
46 7z t emacs-%EMACS_VER%-barebin-i386.zip
47 goto EXIT
48
49 :EXIT