Compiling mp4v2 on Mac OS X
# Create a temporary directory for sources.
SOURCES=$(mktemp -d /tmp/XXXXXXXXXX)
cd $SOURCES
# Download the necessary sources.
curl -#LO http://mp4v2.googlecode.com/files/mp4v2-1.9.1.tar.bz2
# Unpack files
for file in `ls ${SOURCES}/*.tar.*`; do
tar -xzf $file
rm $file
done
cd mp4v2-*/
./configure && make -j 4 && sudo make install
Comments