2007-04-03 03:48:09 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# This shell script is roughly equivalent to what "make dist" did in the
|
|
|
|
# autotools build system and is called from a custom CMake target.
|
|
|
|
|
|
|
|
# !!! FIXME: This code sort of sucks. Consider using CPack instead...
|
|
|
|
|
|
|
|
if [ ! -f ./CMakeLists.txt ]; then
|
|
|
|
echo "you are in the wrong place."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z "$1" ]; then
|
|
|
|
echo "Wrong arguments."
|
|
|
|
exit 2
|
|
|
|
fi
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
VERSION="$1"
|
|
|
|
BASENAME="physfs-$VERSION"
|
|
|
|
TARBALL="$BASENAME.tar.gz"
|
|
|
|
TMPCPDIR="../9sdkujy75jv932-physfstmp-$VERSION"
|
|
|
|
CPDIR="$TMPCPDIR/$BASENAME"
|
|
|
|
|
|
|
|
echo "Packing PhysicsFS $VERSION source tarball..."
|
|
|
|
echo " + Setting up scratch dir..."
|
|
|
|
rm -rf $TMPCPDIR
|
|
|
|
mkdir $TMPCPDIR
|
2007-04-03 07:13:49 +02:00
|
|
|
mkdir $CPDIR
|
2007-04-03 03:48:09 +02:00
|
|
|
|
|
|
|
echo " + Making copy of source tree in scratch dir..."
|
|
|
|
cp -R . $CPDIR/
|
|
|
|
echo " + Deleting cruft..."
|
2007-04-03 07:13:49 +02:00
|
|
|
pushd $CPDIR >/dev/null
|
|
|
|
rm -rf `svn propget svn:ignore .`
|
|
|
|
rm -rf `svn status |grep '?' |sed -s 's/\?//'`
|
|
|
|
popd >/dev/null
|
2007-04-03 03:48:09 +02:00
|
|
|
rm -rf `find $CPDIR -type d -name '.svn'`
|
|
|
|
echo " + Deleting Subversion metadata..."
|
|
|
|
rm -rf `find $CPDIR -type d -name '.svn'`
|
|
|
|
echo " + Fixing up permissions..."
|
|
|
|
chmod -R a+rw $CPDIR
|
|
|
|
chmod a+x `find $CPDIR -type d`
|
|
|
|
echo " + Building final tarball..."
|
|
|
|
rm -f $TARBALL
|
|
|
|
tar -czf $TARBALL -C $TMPCPDIR $BASENAME
|
|
|
|
echo " + Cleaning up..."
|
|
|
|
rm -rf $TMPCPDIR
|
|
|
|
echo " + All done! Packed to '$TARBALL' ..."
|
|
|
|
set +e
|
|
|
|
|
|
|
|
exit 0
|
|
|
|
|