quakeforge-old/rpm/build_rpm.in
Bill Currie 2f5ba89cf0 build_rpm.in:
now builds the rpms. NOTE: only i386 and i686 supported for now. other
	archs need to be atted to the mkdir -p line for RPMS.
rpmrc:
	new file. tell rpm where to pick up our macros for _topdir
2000-01-23 00:45:19 +00:00

26 lines
630 B
Bash
Executable file

#!/bin/sh -x
version=@QF_VERSION@
temp_dir=/var/tmp
srcdir=@srcdir@
if [ "$srcdir" = "." ]; then
srcdir=..
fi
mkdir -p BUILD SPECS RPMS/{noarch,i386,i686} SOURCES SRPMS
rm -rf ${temp_dir}/quakeforge-${version}
cp -a $srcdir ${temp_dir}/quakeforge-${version}
dest_dir=$PWD
cd ${temp_dir}/quakeforge-${version}
# this is needed to ensure there is a makefile
./bootstrap
./configure
make distclean
cd ${temp_dir}
tar zcf ${dest_dir}/SOURCES/quakeforge-${version}.tar.gz quakeforge-${version}
cd ${dest_dir}
rm -rf ${temp_dir}/quakeforge-${version}
cat > rpmmacros <<EOF
%_topdir $PWD
EOF
rpm -ba quakeforge.spec --rcfile rpmrc