moved for svn-git switch
[mailer.git] / updater / .cms.sh
1 #!/bin/sh
2 # Self-test
3 if test "`basename $0`" = ".cms.sh"; then
4         echo "Bye..."
5         exit 0
6 fi
7
8 # General config stuff
9 CMS_EXT_DIR="mxchange_ext_cms"
10
11 # Versions
12 CMS_VER="0.0.1"
13 CMS_PRE=""
14
15 # FTP directory
16 CMS_UPLOAD_DIR="$BASEDIR/$CMS_EXT_DIR"
17 CMS_FTP_DIR="content/htdocs/extensions"
18
19 # Archive stuff
20 if test "$CMS_PRE" != ""; then
21         CMS_TAR="$BASENAME-$CMS-$CMS_VER-pre$CMS_PRE.tar"
22         CMS_ZIP="$BASENAME-$CMS-$CMS_VER-pre$CMS_PRE.zip"
23  else
24         CMS_TAR="$BASENAME-$CMS-$CMS_VER.tar"
25         CMS_ZIP="$BASENAME-$CMS-$CMS_VER.zip"
26 fi
27
28 # Files stuff which will be archived
29 CMS_FILES="ChangeLog* README $CMS/ $CMS/DOCS/LICENSE*"
30
31 # Base CMS extensions
32 CMS_EXT="support user register mydata other online sql_patches newsletter mediadata update country theme"
33
34 # Extra ported extensions
35 CMS_EXTRA_EXT="autopurge bonus task club admins"
36
37 # Extensions to be uploaded
38 #UPLOAD_CMS_EXT="$CMS_EXT $CMS_EXTRA_EXT"
39 UPLOAD_CMS_EXT=""