Imported Upstream version 3.1.0
[debian/amanda] / packaging / rpm / buildpkg
1 #!/bin/bash
2
3 # Buildpkg script for producing RPM packages. (Does not require root access.)
4 # Buildpkg is designed to be used by both buildbot (to automate rpm production)
5 # and by J Random User (to build an rpm for kicks).  The odd way of handling
6 # all optioins through environment variables is a product of buildbot.
7 #
8 # AMVER: the version of amanda we're working on.  This will become part of the
9 #     rpm name.  AMVER must line up with the version number mentioned in the
10 #     .spec file.
11 # PKG_DIR: Rpmbuild expects absolute paths, so we provide this var.  It also
12 #     allows you to build somewhere other than `pwd`.  You probably don't want
13 #     to use the system-wide location, as the script tries to blow these
14 #     directories away.
15
16 # Other Hints:
17 # Not everyone will want to use the ./configure options we provide.  The
18 # easiest way to change them is by editing the .spec file.  This isn't so
19 # easy, unfortunately.  Look at the %build section, and the %define xxxx 
20 # statements immediately above it. good luck.
21
22 # This is useful for debugging
23  set -x
24 # Check for $AMVER, or pull it from configure.in
25 if [ -z $AMVER ]; then
26     VER=`cat FULL_VERSION`
27     AMVER=amanda-${VER}
28 fi
29
30 PKG_TARBALL=${AMVER}.tar.gz
31 if [ ! -f "${PKG_TARBALL}" ]; then
32     mkdir ${AMVER} || exit 1
33     cp -Rfp * ${AMVER}/
34     tar -cf ${PKG_TARBALL} -z ${AMVER} || exit 1
35     rm -rf ${AMVER} || exit 1
36 fi
37
38 # Check for the packaging dirs.
39 if [ -z "$PKG_DIR" ]; then
40     PKG_DIR=${PWD}
41 fi
42 if [ ! -d ${PKG_DIR} ]; then
43     mkdir ${PKG_DIR} || exit 1
44 fi
45 cd ${PKG_DIR}
46
47 if [ -d rpm ]; then
48     rm -rf rpm || exit 1
49 fi
50 mkdir rpm
51 mkdir rpm/SOURCES
52 mkdir rpm/SRPMS
53 mkdir rpm/SPECS
54 mkdir rpm/BUILD
55 mkdir rpm/RPMS || exit 1
56
57 # Make a copy of the tarball in the rpmbuild location
58 cp ${PKG_TARBALL} rpm/SOURCES/${PKG_TARBALL} || exit 1
59 cp packaging/rpm/amanda.spec rpm/SPECS || exit 1
60 # Rpmbuild requires absolute paths.  annoying.  If you need to change the 
61 # default value of some rpm.spec variable, just pass extra --define options.
62 # this is useful for changing %amanda_release or %amanda_version
63 rpmbuild -ba --define "_topdir ${PKG_DIR}/rpm" \
64              ${PKG_DIR}/rpm/SPECS/amanda.spec || exit 1
65 cp rpm/RPMS/*/*.rpm . || exit 1
66 cp rpm/SRPMS/*.rpm . || exit 1