Skip to content

Commit

Permalink
#849: bundle gdp library and simplify lib mv / rm bundling code
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@10287 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Aug 13, 2015
1 parent b4c089e commit c579e65
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions osx/make-app.sh
Original file line number Diff line number Diff line change
Expand Up @@ -201,27 +201,27 @@ pushd ${CONTENTS_DIR}
ln -sf Resources/lib Frameworks
pushd Resources/lib
echo "removing extra gstreamer dylib deps:"
for x in "libgstbasevideo*" "libgstcdda*" \
"libgstcheck*" "libgstnetbuffer*" "libgstphotography*" \
"libgstrtp*" "libgstrtsp*" "libgstsdp*" "libgstsignalprocessor*" \
"libgstvideo*" \
for x in basevideo cdda \
check netbuffer photography \
rtp rtsp sdp signalprocessor \
video \
; do
echo "* removing "$x
rm $x
rm libgst${x}*
done
echo "removing extra gstreamer plugins:"
GST_PLUGIN_DIR=./gstreamer-0.10
KEEP=./gstreamer-0.10.keep
mkdir ${KEEP}
for x in "libgstapp.*" "libgstaudio*" "libgstcoreelements*" \
"libgstfaac*" "libgstfaad*" \
"libgstflac*" "libgstlame*" "libgstmad*" "libgstmpegaudioparse*" \
"libgstpython*" \
"libgstogg*" "libgstoss*" "libgstosxaudio*" "libgstspeex*" \
"libgstvolume*" "libgstvorbis*" \
"libgstwav*"; do
for x in app audio coreelements \
faac faad \
flac lame mad mpegaudioparse \
python \
ogg oss osxaudio speex gdp \
volume vorbis \
wav; do
echo "* keeping "$x
mv ${GST_PLUGIN_DIR}/$x ${KEEP}/
mv ${GST_PLUGIN_DIR}/libgst${x}* ${KEEP}/
done
rm -fr ${GST_PLUGIN_DIR}
mv ${KEEP} ${GST_PLUGIN_DIR}
Expand Down

0 comments on commit c579e65

Please sign in to comment.