]> code.citadel.org Git - citadel.git/blobdiff - libcitadel/buildpackages
Buildpackgaes: more files to ignore for the distribution tarballs.
[citadel.git] / libcitadel / buildpackages
index 5e63f87cefe507404d3f4f80996c220ae625381b..0a2bd583e4d2092806b05644a3dda42e0cd291a6 100755 (executable)
@@ -8,7 +8,6 @@ fi
 
 export `grep PACKAGE_VERSION= configure |sed -e "s;';;g" -e "s;PACKAGE;LIBCITADEL;"`
 
-PACKAGE_VERSION=`cat packageversion`
 DATE=`date '+%a, %d %b %Y %H:%I:00 %z'`
 ACTUAL_DIR=`pwd`
 
@@ -21,7 +20,7 @@ else
        if test -L "$ACTUAL_DIR"; then 
                SYMLINK_=`pwd`
                SYMLINK=`ls -l $SYMLINK_|sed "s;.*-> ;;"`
-               if ls -l $SYMLINK_|grep -q "$LIBCITADEL_VERSION"; then
+               if ls -l $SYMLINK|grep -q "$LIBCITADEL_VERSION"; then
                        done=true
                fi
        else
@@ -29,8 +28,7 @@ else
        fi
        if test "$done" = "false"; then 
                cd ..
-               mv -- $SYMLINK "libcitadel-$LIBCITADEL_VERSION"
-               ln -sf "libcitadel-$LIBCITADEL_VERSION" libcitadel
+               ln -sf libcitadel "libcitadel-$LIBCITADEL_VERSION" 
                cd "libcitadel-$LIBCITADEL_VERSION"
        else
                cd "../libcitadel-$LIBCITADEL_VERSION"
@@ -102,18 +100,21 @@ EMAIL=citadel@outgesourced.org
 
        ;;
     sourcedist)
-       cd ..; tar --exclude .svn \
-           --exclude "*svn*" \
-           --exclude .libs \
+       cd ..; tar \
+           --exclude ".gitignore" \
            --exclude "*.lo" \
            --exclude "*.o" \
            --exclude "*.d" \
+           --exclude "autom4te.cache/*" \
            --exclude "debian/*" \
            --exclude "sysdep.h" \
            \
+           --exclude .libs \
+           --exclude tests/testdata \
+           \
            -chvzf libcitadel-$LIBCITADEL_VERSION.tar.gz libcitadel-$LIBCITADEL_VERSION/
        ;;
        *)
-               echo "Not yet implemented. we have: debian "
+               echo "Not yet implemented. we have: debian, sourcedist "
                ;;
 esac