From c579e65f6c11bda02ee50f963dce7d01eb73e8c6 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Thu, 13 Aug 2015 09:30:42 +0000 Subject: [PATCH] #849: bundle gdp library and simplify lib mv / rm bundling code git-svn-id: https://xpra.org/svn/Xpra/trunk@10287 3bb7dfac-3a0b-4e04-842a-767bc560f471 --- osx/make-app.sh | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/osx/make-app.sh b/osx/make-app.sh index 2b7ba9320a..0a29d81085 100755 --- a/osx/make-app.sh +++ b/osx/make-app.sh @@ -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}