diff options
Diffstat (limited to 'Swift/Packaging/Debian/package.sh')
-rwxr-xr-x | Swift/Packaging/Debian/package.sh | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/Swift/Packaging/Debian/package.sh b/Swift/Packaging/Debian/package.sh index f9d809a..c395d25 100755 --- a/Swift/Packaging/Debian/package.sh +++ b/Swift/Packaging/Debian/package.sh @@ -21,21 +21,30 @@ rm -rf swift-im-* echo "Checking out a fresh copy ..." rm -rf $DIRNAME git clone ../../../.git $DIRNAME -find $DIRNAME/3rdParty/Boost/src -type f | grep -v uuid | xargs rm -f -find $DIRNAME/3rdParty/SCons -delete -find $DIRNAME/3rdParty/DocBook -delete + +# Clean out 3rdParty +find $DIRNAME/3rdParty -type f | grep -v uuid | grep -v SConscript | xargs rm -f +find $DIRNAME/3rdParty -depth -empty -type d -exec rmdir {} \; +rm -rf $DIRNAME/3rdParty/SCons + +# Fork local Boost UUID copy # FIXME: This shouldn't be necessary, but SCons isn't picking up the generated headers for compilation mkdir -p $DIRNAME/3rdParty/Boost/uuid/boost cp -r $DIRNAME/3rdParty/Boost/src/boost/uuid $DIRNAME/3rdParty/Boost/uuid/boost +# Create orig tarball for debuild +tar czf swift-im_$DEBIAN_VERSION.orig.tar.gz --exclude=$DIRNAME/.git $DIRNAME + +# Initialize debian files ln -s Swift/Packaging/Debian/debian $DIRNAME/debian ../../../BuildTools/UpdateDebianChangelog.py $DIRNAME/debian/changelog $DEBIAN_VERSION cat $DIRNAME/debian/control.in | sed -e "s/%SWIFTEN_SOVERSION%/$SWIFTEN_SOVERSION/g" > $DIRNAME/debian/control mv $DIRNAME/debian/libswiften.install $DIRNAME/debian/libswiften$SWIFTEN_SOVERSION.install mv $DIRNAME/debian/libswiften-dev.install $DIRNAME/debian/libswiften$SWIFTEN_SOVERSION-dev.install -echo "Building ..." +# Build cd $DIRNAME set +e -dpkg-buildpackage -S -rfakeroot -i -I -dpkg-buildpackage -b -rfakeroot -i -I +debuild -i -I +#dpkg-buildpackage -S -rfakeroot -i -I +#dpkg-buildpackage -b -rfakeroot -i -I |