fix dlen
[citadel.git] / appimage / build_appimage.sh
diff --git a/appimage/build_appimage.sh b/appimage/build_appimage.sh
deleted file mode 100755 (executable)
index ffb90af..0000000
+++ /dev/null
@@ -1,76 +0,0 @@
-#!/bin/bash
-
-export CITADEL_BUILD_DIR=/tmp/citadel-build-$$
-export WEBCIT_BUILD_DIR=/tmp/webcit-build-$$
-rm -fr $CITADEL_BUILD_DIR $WEBCIT_BUILD_DIR
-
-# libcitadel has to be built in a "real" library directory
-pushd ../libcitadel || exit 1
-make distclean 2>/dev/null
-./bootstrap || exit 1
-./configure || exit 1
-make || exit 1
-make install || exit 1
-popd
-
-# Build the Citadel server
-pushd ../citadel || exit 1
-make distclean 2>/dev/null
-./bootstrap || exit 1
-./configure --prefix=$CITADEL_BUILD_DIR || exit 1
-make || exit 1
-make install || exit 1
-popd
-
-# Build WebCit
-pushd ../webcit || exit 1
-make distclean 2>/dev/null
-./bootstrap || exit 1
-./configure --prefix=$WEBCIT_BUILD_DIR || exit 1
-make || exit 1
-make install || exit 1
-popd
-
-# Clear out any old versions in the AppDir
-rm -frv citadel.AppDir/usr
-mkdir -p citadel.AppDir/usr/bin
-mkdir -p citadel.AppDir/usr/lib
-
-# Copy over all the libraries we used
-for bin in $CITADEL_BUILD_DIR/citserver $WEBCIT_BUILD_DIR/webcit
-do
-       for x in `ldd $bin | awk ' { print $3 } ' | grep -v -e '^$' | grep -v 'libc.so' | grep -v 'libpthread.so' | grep -v 'libresolv.so'`
-       do
-               cp -v -L $x citadel.AppDir/usr/lib/
-       done
-done
-ldconfig -v citadel.AppDir/usr/lib
-
-# Copy over some utilities
-for bin in db_dump db_load db_recover
-do
-       cp `which $bin` citadel.AppDir/usr/bin/
-done
-
-# Install the Citadel Server application tree
-mkdir -p citadel.AppDir/usr/local/citadel
-rsync -va $CITADEL_BUILD_DIR/ ./citadel.AppDir/usr/local/citadel/
-
-# Install the WebCit application tree
-mkdir -p citadel.AppDir/usr/local/webcit
-rsync -va $WEBCIT_BUILD_DIR/ ./citadel.AppDir/usr/local/webcit/
-
-# Remove the build directories
-rm -fr $CITADEL_BUILD_DIR $WEBCIT_BUILD_DIR
-
-cc ctdlvisor.c -o citadel.AppDir/usr/bin/ctdlvisor || exit 1
-
-cpu=`uname -p`
-basefilename=citadel-`date +%s`
-if [ $cpu == x86_64 ] ; then
-       ARCH=x86_64 appimagetool citadel.AppDir/ ${basefilename}-x64.appimage
-else
-       ARCH=ARM appimagetool citadel.AppDir/ ${basefilename}-arm32.appimage
-fi
-
-