diff options
author | John Terpstra <jht@samba.org> | 1998-11-14 13:01:34 +0000 |
---|---|---|
committer | John Terpstra <jht@samba.org> | 1998-11-14 13:01:34 +0000 |
commit | 6b989ca4fd6e80e04a28ccea76875933f016dd86 (patch) | |
tree | 707b021f4b3365222c9777bb593c33531a7be239 /packaging/Digital/package-prep | |
parent | 3a4cce6d16e27a385b33a5ea0247006036f6a14e (diff) | |
download | samba-6b989ca4fd6e80e04a28ccea76875933f016dd86.tar.gz samba-6b989ca4fd6e80e04a28ccea76875933f016dd86.tar.bz2 samba-6b989ca4fd6e80e04a28ccea76875933f016dd86.zip |
Added first cut of the new packaging scripts for Digital Unix.
Note: This will be extended for all other OS's so that it can be
maintained by the samba release scripts.
(This used to be commit 0f98a2fd58aee1dac4d0f4098a2e690dfaf5ba27)
Diffstat (limited to 'packaging/Digital/package-prep')
-rwxr-xr-x | packaging/Digital/package-prep | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/packaging/Digital/package-prep b/packaging/Digital/package-prep new file mode 100755 index 0000000000..77bacd0472 --- /dev/null +++ b/packaging/Digital/package-prep @@ -0,0 +1,31 @@ +tar xvf skeleton.tar +( cd /usr/local; + mv man man.orig; + mv samba samba.orig; + DIRNOW=`pwd1`; + ln -sf $NOWDIR/usr/local/man man; + ln -sf $NOWDIR/usr/local/samba samba; ) +gunzip samba-2.0.0.tar.gz +tar xvf samba-2.0.0.tar +cd samba-2.0.0/source +./configure +make +make install +cd $NOWDIR/usr/local/samba +cp -pr man ../ +rm -rf man +cd $NOWDIR +tar cvf install.tar usr var +cd samba-2.0.0/source/bin +rm -f * +cd .. +make clean +cd ../.. +tar cvf samba-2.0.0.tar samba-2.0.0 +rm -rf samba-2.0.0 +rm -rf usr var +cd .. +find samba-2.0.0 -print | cpio -o > samba-2.0.0-OSF1-v4.0-alpha.cpio +gzip samba-2.0.0-OSF1-v4.0-alpha.cpio +cd samba-2.0.0 +tar xcf install.tar |