mirror of
https://github.com/samba-team/samba.git
synced 2025-01-22 22:04:08 +03:00
15 lines
425 B
Bash
15 lines
425 B
Bash
#!/bin/sh
|
|
# Copyright (C) John H Terpstra 1998
|
|
#
|
|
RPMDIR=`rpm --showrc | awk '/^rpmdir/ { print $3}'`
|
|
SPECDIR=`rpm --showrc | awk '/^specdir/ { print $3}'`
|
|
SRCDIR=`rpm --showrc | awk '/^sourcedir/ { print $3}'`
|
|
|
|
( cd ../../.. ; tar czvf ${SRCDIR}/samba-PVERSION.tar.gz samba-PVERSION )
|
|
cp -a *.spec $SPECDIR
|
|
cp -a *.patch smb.* samba.log $SRCDIR
|
|
cd $SRCDIR
|
|
chown -R root.root samba-PVERSION
|
|
cd $SPECDIR
|
|
rpm -ba -v samba2.spec
|