]> git.sesse.net Git - vlc/blob - extras/package/macosx/ub.sh
vlc_threads_funcs.h: Don't attempt to track pthread_cond_wait() that takes a long...
[vlc] / extras / package / macosx / ub.sh
1 #!/bin/bash
2
3 INTELROOT=/Volumes/vlc-0.8.6a/VLC.app
4 PPCROOT=/Applications/VLC.app
5 UBROOT=/Users/fpk/0.8.6a/VLC-release.app
6
7 for i in `ls $INTELROOT/Contents/MacOS/lib/`
8 do
9         echo $i
10         lipo $INTELROOT/Contents/MacOS/lib/$i $PPCROOT/Contents/MacOS/lib/$i -create -output $UBROOT/Contents/MacOS/lib/$i
11 done
12 for i in `ls $INTELROOT/Contents/MacOS/modules/`
13 do
14         echo $i
15         lipo $INTELROOT/Contents/MacOS/modules/$i $PPCROOT/Contents/MacOS/modules/$i -create -output $UBROOT/Contents/MacOS/modules/$i
16 done
17 lipo $INTELROOT/Contents/MacOS/VLC $PPCROOT/Contents/MacOS/VLC -create -output $UBROOT/Contents/MacOS/VLC