45 lines
1.1 KiB
Bash
45 lines
1.1 KiB
Bash
|
#!/bin/sh
|
||
|
|
||
|
APPDIR="./app/Deluge.app"
|
||
|
RSCDIR="${APPDIR}/Contents/Resources"
|
||
|
LIBDIR="${RSCDIR}/lib"
|
||
|
|
||
|
function msg() { echo "==> $1"; }
|
||
|
|
||
|
echo "*** Packaging Deluge.app to $APPDIR..."
|
||
|
|
||
|
msg "Clearing app dir"
|
||
|
rm -fr $APPDIR
|
||
|
|
||
|
msg "Fixing permissions on file we will need to relocate"
|
||
|
if [ ! -z "${JHBUILD_PREFIX}" ]; then
|
||
|
chmod 755 "${JHBUILD_PREFIX}/lib/"libpython*.dylib
|
||
|
chmod 755 "${JHBUILD_PREFIX}/lib/"libssl*.dylib
|
||
|
chmod 755 "${JHBUILD_PREFIX}/lib/"libcrypto*.dylib
|
||
|
fi
|
||
|
|
||
|
chmod 755 deluge*.sh
|
||
|
|
||
|
msg "Calling gtk-mac-bundler"
|
||
|
gtk-mac-bundler deluge.bundle
|
||
|
|
||
|
msg "Unzip site-packages and make python softlink without version number"
|
||
|
pushd ${LIBDIR} || exit 1
|
||
|
ln -sf python* python
|
||
|
cd python
|
||
|
unzip -nq site-packages.zip
|
||
|
rm site-packages.zip
|
||
|
popd
|
||
|
|
||
|
msg "Replacing deluge by its egg..."
|
||
|
rm -fr ${LIBDIR}/python/deluge
|
||
|
rsync -rpl $JHBUILD_PREFIX/lib/python2.7/site-packages/deluge-*.egg "${LIBDIR}/python/"
|
||
|
|
||
|
msg "Clean unnecessary files"
|
||
|
find $APPDIR -name "*.la" -exec rm -f {} \; # Should not be packaged
|
||
|
find $APPDIR -name "*.pyo" -exec rm -f {} \; # Just duplicates
|
||
|
rm -fr $LIBDIR/pygtk/2.0/*demo*
|
||
|
|
||
|
echo "*** Packaging done:`du -hs $APPDIR | cut -f 1`"
|
||
|
|