mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-10 06:31:56 +00:00
2f5ba89cf0
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
26 lines
630 B
Bash
Executable file
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
|