source: trunk/util/arb_compress @ 19245

Last change on this file since 19245 was 19245, checked in by westram, 3 years ago
  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 632 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 \*/pts/\* \
14     ! -path \*/.svn/\* \
15     ! -path \*/unused/\* \
16     ! -path \*ChangeLog \
17     ! -path \*lib/nas/names.dat \
18     ! -path \*lib/macros/.checks/\* \
19     ! -path \*PERL_SCRIPTS/test/\* \
20     ! -name \#\*
21)
22
23if [ "${ISINA}" = "1" ]; then
24
25    util/build_fat_tarball.pl \
26        $ARBHOME/GDE/SINA/builddir/src/sina \
27        $ARBHOME/GDE/SINA/arb-sina-fat.README \
28        arb-sina-fat.tgz \
29
30fi
31
32ls -al -h arb*.tgz
Note: See TracBrowser for help on using the repository browser.