ef6974cb85a295c37432dfdd13244358f6adf9a1
[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 # Until we get package revisioning in community.
31 [ -f "PKG_REV" ] || echo "1" > PKG_REV
32
33 # Substitute amanda.spec.src
34 /usr/bin/perl packaging/common/substitute.pl \
35     packaging/rpm/amanda.spec.src packaging/rpm/amanda.spec
36
37 PKG_TARBALL=${AMVER}.tar.gz
38 if [ ! -f "${PKG_TARBALL}" ]; then
39     mkdir ${AMVER} || exit 1
40     cp -Rfp * ${AMVER}/
41     tar -cf ${PKG_TARBALL} -z ${AMVER} || exit 1
42     rm -rf ${AMVER} || exit 1
43 fi
44
45 # Check for the packaging dirs.
46 if [ -z "$PKG_DIR" ]; then
47     PKG_DIR=${PWD}
48 fi
49 if [ ! -d ${PKG_DIR} ]; then
50     mkdir ${PKG_DIR} || exit 1
51 fi
52 cd ${PKG_DIR}
53
54 if [ -d rpm ]; then
55     rm -rf rpm || exit 1
56 fi
57 mkdir rpm
58 mkdir rpm/SOURCES
59 mkdir rpm/SRPMS
60 mkdir rpm/SPECS
61 mkdir rpm/BUILD
62 mkdir rpm/RPMS || exit 1
63
64 # Make a copy of the tarball in the rpmbuild location
65 cp ${PKG_TARBALL} rpm/SOURCES/${PKG_TARBALL} || exit 1
66 cp packaging/rpm/amanda.spec rpm/SPECS || exit 1
67 # Rpmbuild requires absolute paths.  annoying.  If you need to change the 
68 # default value of some rpm.spec variable, just pass extra --define options.
69 # this is useful for changing %amanda_release or %amanda_version
70 rpmbuild -ba --define "_topdir ${PKG_DIR}/rpm" \
71              ${PKG_DIR}/rpm/SPECS/amanda.spec || exit 1
72 cp rpm/RPMS/*/*.rpm . || exit 1
73 cp rpm/SRPMS/*.rpm . || exit 1