Commit 4b55ce42 authored by Felix Paul Kühne's avatar Felix Paul Kühne

* commit Jean-Baptiste's universal binary script to svn, so you don't have to...

* commit Jean-Baptiste's universal binary script to svn, so you don't have to browse trac each time you need it. remember to customise the 3 variables at the top before using it. (closes #749)
parent 51ba1498
#!/bin/bash
INTELROOT=/Volumes/vlc-0.8.6a/VLC.app
PPCROOT=/Applications/VLC.app
UBROOT=/Users/fpk/0.8.6a/VLC-release.app
for i in `ls $INTELROOT/Contents/MacOS/lib/`
do
echo $i
lipo $INTELROOT/Contents/MacOS/lib/$i $PPCROOT/Contents/MacOS/lib/$i -create -output $UBROOT/Contents/MacOS/lib/$i
done
for i in `ls $INTELROOT/Contents/MacOS/modules/`
do
echo $i
lipo $INTELROOT/Contents/MacOS/modules/$i $PPCROOT/Contents/MacOS/modules/$i -create -output $UBROOT/Contents/MacOS/modules/$i
done
lipo $INTELROOT/Contents/MacOS/VLC $PPCROOT/Contents/MacOS/VLC -create -output $UBROOT/Contents/MacOS/VLC
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment