NetBSD/distrib/sets/makesrctars

81 lines
1.8 KiB
Plaintext
Raw Normal View History

#! /bin/sh
1997-02-18 10:06:00 +03:00
#
# $NetBSD: makesrctars,v 1.9 1998/10/28 11:02:37 mycroft Exp $
1997-02-18 10:06:00 +03:00
#
# Make source code tarballs.
GZIP=--best
export GZIP
if [ -z "$SRCDIR" ]; then
echo SRCDIR must be set
exit 1
fi
if [ -z "$DESTDIR" ]; then
echo DESTDIR must be set
exit 1
fi
if [ -d ${DESTDIR} ]; then
echo "DESTDIR exists."
exit 1
fi
cd $SRCDIR
mkdir ${DESTDIR}
mkdir ${DESTDIR}/sets
find . \
\! \( \( -path ./gnu -o -path ./share -o -path ./domestic \) -prune \) \
\! \( -path ./sys -prune \) \
\! \( -path ./usr.sbin/config -prune \) \
\! \( -path ./usr.sbin/dbsym -prune \) \
\! \( \( -type l -o -type d \) \( -name obj -o -name 'obj.*' \) \) \
-print | \
sort | pax -w -d -s'|^\.|usr/src|' | gzip \
> ${DESTDIR}/sets/src.tgz
find gnu \
\! \( \( -type l -o -type d \) \( -name obj -o -name 'obj.*' \) \) \
-print | \
sort | pax -w -d -s'|^|usr/src/|' | gzip \
> ${DESTDIR}/sets/gnusrc.tgz
find sys usr.sbin/config usr.sbin/dbsym \
\! \( -path 'sys/arch/*/compile/*' \! -path 'sys/arch/*/compile/CVS' -prune \) \
\! \( \( -type l -o -type d \) \( -name obj -o -name 'obj.*' \) \) \
-print | \
sort | pax -w -d -s'|^|usr/src/|' | gzip \
> ${DESTDIR}/sets/syssrc.tgz
find share \
\! \( \( -type l -o -type d \) \( -name obj -o -name 'obj.*' \) \) \
-print | \
sort | pax -w -d -s'|^|usr/src/|' | gzip \
> ${DESTDIR}/sets/sharesrc.tgz
1998-05-10 20:48:44 +04:00
(cd ${DESTDIR}/sets
cksum -o1 *.tgz > BSDSUM
cksum *.tgz > CKSUM
cksum -o2 *.tgz > SYSVSUM
md5 *.tgz > MD5)
chmod 444 ${DESTDIR}/sets/*
mkdir ${DESTDIR}/security
find domestic \
\! \( \( -type l -o -type d \) \( -name obj -o -name 'obj.*' \) \) \
-print | \
sort | pax -w -d -s'|^|usr/src/|' | gzip \
> ${DESTDIR}/security/secrsrc.tgz
1998-05-10 20:48:44 +04:00
(cd ${DESTDIR}/security
cksum -o1 *.tgz > BSDSUM
cksum *.tgz > CKSUM
cksum -o2 *.tgz > SYSVSUM
md5 *.tgz > MD5)
chmod 444 ${DESTDIR}/security/*