source: trunk/util/arb_compress

Last change on this file was 19251, checked in by westram, 2 years ago
  • do NOT pack eventually installed fat-sina into normal arb-tarball.
  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 663 bytes
Line 
1#!/bin/bash
2set -x
3set -e
4
5rm -f \
6   arb.tgz \
7   arb-sina-fat.tgz \
8
9tar -czf arb.tgz -T <(
10  find demo.arb arb_install.sh arb_*.txt
11  find bin lib PERL_SCRIPTS SH \
12     ! -type d \
13     ! -path \*/.svn/\* \
14     ! -path \*/fatsina/\* \
15     ! -path \*/lib/macros/.checks/\* \
16     ! -path \*/PERL_SCRIPTS/test/\* \
17     ! -path \*/pts/\* \
18     ! -path \*/unused/\* \
19     ! -path \*ChangeLog \
20     ! -path \*lib/nas/names.dat \
21     ! -name \#\*
22)
23
24if [ "${ISINA}" = "1" ]; then
25
26    util/build_fat_tarball.pl \
27        $ARBHOME/GDE/SINA/builddir/src/sina \
28        $ARBHOME/GDE/SINA/arb-sina-fat.README \
29        arb-sina-fat.tgz \
30
31fi
32
33ls -al -h arb*.tgz
Note: See TracBrowser for help on using the repository browser.