doc: don't try to install info files we no longer build
[nasm.git] / tools / release
blob06d2ee421be3a09c5b2d7b3c41b8e3bfcebf2246
1 #!/bin/bash -xe
3 # Generate a NASM release
5 # Usage: release version [destination]
8 version="$1"
9 if [ -z "$1" ]; then
10 echo "Usage: $0 version [destination]" 1>&2
11 exit 1
14 WHERE="$2"
15 if [ -z "$WHERE" ]; then
16 WHERE=/var/tmp
19 if [ -n "$GIT_DIR" ]; then
20 HERE="$GIT_DIR"
21 else
22 HERE=`pwd`
25 if [ x`cat version` != x"${version}" ]; then
26 echo "${version}" > version
27 git update-index version
28 git commit -m "Version ${version}" -- version
30 git tag -m "NASM version ${version}" -f "nasm-${version}"
32 cd "$WHERE"
33 rm -rf nasm-release.*
34 work=nasm-release.$$
35 mkdir $work
36 cd $work
37 unset GIT_DIR
38 git clone -s -l "$HERE" nasm
39 rm -rf nasm/.git nasm/.gitignore
41 # Create files which are in the release but automatically generated
42 cd nasm
43 ./autogen.sh
44 ./configure --prefix=/usr/local
45 make perlreq spec manpages
46 make alldeps
47 make distclean
48 cd ..
50 # Clean up any previous attempt
51 rm -f ../nasm-"$version".tar.gz ../nasm-"$version"-xdoc.tar.gz
52 rm -f ../nasm-"$version".tar.bz2 ../nasm-"$version"-xdoc.tar.bz2
53 rm -f ../nasm-"$version".tar.xz ../nasm-"$version"-xdoc.tar.xz
54 rm -f ../nasm-"$version".zip ../nasm-"$version"-xdoc.zip
56 # Create tarfile (Unix convention: file includes prefix)
57 mv nasm nasm-"$version"
58 tar cvvf nasm-"$version".tar nasm-"$version"
59 xz -9ek nasm-"$version".tar
60 bzip2 -9k nasm-"$version".tar
61 gzip -9 nasm-"$version".tar
62 mv nasm-"$version".tar.gz nasm-"$version".tar.bz2 nasm-"$version".tar.xz ..
64 # Create zipfile (DOS convention: no prefix, convert file endings)
65 cd nasm-"$version"
66 # Text files
67 zip -9Dlr ../../nasm-"$version".zip * -x \*.jpg -x \*.zip -x \*.ico -x \*.png
68 # Binary files
69 zip -9Dgr ../../nasm-"$version".zip * -i \*.jpg -i \*.zip -i \*.ico -i \*.png
70 cd ..
72 # Record what we have already generated
73 find nasm-"$version" -not -type d -print > main
75 # Create documentation
76 cd nasm-"$version"
77 ./configure --prefix=/usr/local
78 make doc
79 # Remove intermediate files.
80 make cleaner
81 cd ..
83 # Remove non-documentation
84 cat main | xargs rm -f
85 # Delete empty subdirectories
86 find nasm-"$version"/doc -type d -exec rmdir '{}' \; 2>/dev/null || true
88 # Create doc tarfile
89 tar cvvf nasm-"$version"-xdoc.tar nasm-"$version"/doc
90 xz -9ek nasm-"$version"-xdoc.tar
91 bzip2 -9k nasm-"$version"-xdoc.tar
92 gzip -9 nasm-"$version"-xdoc.tar
93 mv nasm-"$version"-xdoc.tar.gz nasm-"$version"-xdoc.tar.bz2 nasm-"$version"-xdoc.tar.xz ..
95 # Create doc zipfile (DOS convention: no prefix, convert file endings)
96 cd nasm-"$version"
97 zip -9Dlr ../../nasm-"$version"-xdoc.zip doc -x \*.pdf -x \*.png
98 zip -9Dgr ../../nasm-"$version"-xdoc.zip doc -i \*.pdf -i \*.png
100 # Clean up
101 cd ../..
102 rm -rf "$work"