aboutsummaryrefslogtreecommitdiffstats
path: root/COPYING
<
#! /bin/sh
# Script to build archives with
#

echo "Version number?"
read version

# get current dir
dir=`pwd`

# Get basename
orig=`basename $dir`

# Get the left part of the dash (-)
new=`echo $orig | cut -d- -f1`

# Build new directory name
n=$new-$version;

# Tell the world what we're doing
echo "creates $n.tar.gz";

if [ -r $n ]; then
  echo "Directory already exists!"
  exit
fi

# Create the new dir
mkdir $n

# Copy all relevant files, with path and permissions!
tar -cf - `cat FILES` | (cd $n; tar -xBpf -) || exit 1

(cd $n && sh autogen.sh) || exit 1

# Make a tar archive of it all
tar -cvf $n.tar $n

# gzip the archive
gzip $n.tar

# Make it world readable
chmod a+r $n.tar.gz ;

# Delete the temp dir
rm -rf $n
Commit message (Expand)AuthorAgeFilesLines
* COPYING: fix typoMatthias Andree2021-03-251-1/+1
* Update copyright.Matthias Andree2021-01-031-1/+1
* Do not reference m4/gethostbyname_r.m4, we don't ship it any more.Matthias Andree2019-08-241-3/+2
* Bump copyrights, and bump version to beta6.Matthias Andree2019-08-051-1/+1
*
tle='1996-10-11 14:03:47 +0000'>1996-10-111-22/+18 * Added anti-GPV clause.Eric S. Raymond1996-10-111-0/+24 * Initial revisionEric S. Raymond1996-10-111-0/+278