1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00
John Terpstra c82ff4c942 More temp. changes. - Bear with me, this will soon be resolved.
(This used to be commit cb38843ac753992be0c6a109a8de175b73fe7db2)
2002-03-11 21:35:38 +00:00

55 lines
1.2 KiB
Bash

#!/bin/sh
# Copyright (C) 1998 John H Terpstra, 2000 Klaus Singvogel
#
SPECDIR=${SPECDIR:-/usr/src/OpenLinux/SPECS}
SRCDIR=${SRCDIR:-/usr/src/OpenLinux/SOURCES}
USERID=`id -u`
GRPID=`id -g`
devel=0;
old=0;
# Do some argument parsing...
if [ z$1 = z"devel" ]; then
devel=1;
shift
fi
if [ z$1 = z"old" ]; then
old=1;
shift
fi
if [ z$1 = z"team" ]; then
team=1;
shift
fi
# Start preparing the packages...
if [ $devel -ne 0 ]; then
( cd ../../../.. ; chown -R ${USERID}.${GRPID} samba3; mv samba3 samba-PVERSION )
( cd ../../../.. ; tar czvf ${SRCDIR}/samba-PVERSION.tar.gz samba-PVERSION; mv samba-PVERSION samba3 )
else
( cd ../../../.. ; chown -R ${USERID}.${GRPID} samba-PVERSION )
( cd ../../../.. ; tar czvf ${SRCDIR}/samba-PVERSION.tar.gz samba-PVERSION )
fi
cp -af *.spec *.spec-lsb $SPECDIR
#if [ $team -ne 0 ]; then
# cp *.spec-team $SPECDIR
#fi
for i in `ls *.patch`
do
cp $i $SRCDIR/
done
# Start building the package
cd $SPECDIR
#if [ $old -eq 0 ]; then
#mv -f samba2.spec samba2.spec-nonlsb
#ln -f samba2.spec-lsb samba3.spec
#fi
if [ $team -ne 0 ]; then
# mv -f samba3.spec samba3.spec-lsb
# ln -f samba3.spec-team samba3.spec
rpm -ba -v samba3.spec
else
rpm -ba -v --rmsource --clean samba3.spec
fi