Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MKUNXARC.SH - github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cb79c054263cc8d36978b9d3c9b3b6d7fd9f16b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/sh

# Build a Unix source distribution from the PuTTY CVS area.
#
# Expects the following arguments:
#  - the suffix to put on the Unix source tarball
#  - the options to put on the 'make' command line for the docs

arcsuffix="$1"

relver=`cat LATEST.VER`
arcname="putty$arcsuffix"
mkdir uxarc
mkdir uxarc/$arcname
find . -name uxarc -prune -o \
       -name CVS -prune -o \
       -name .svn -prune -o \
       -name . -o \
       -type d -exec mkdir uxarc/$arcname/{} \;
find . -name uxarc -prune -o \
       -name CVS -prune -o \
       -name .cvsignore -prune -o \
       -name .svn -prune -o \
       -name '*.zip' -prune -o \
       -name '*.tar.gz' -prune -o \
       -type f -exec ln -s $PWD/{} uxarc/$arcname/{} \;

tar -C uxarc -chzof $arcname.tar.gz $arcname
rm -rf uxarc