]> git.sesse.net Git - vlc/blobdiff - projects/macosx/framework/Pre-Compile.sh
VLCKit: Use name instead of $1 and $2 in Pre-Compile script.
[vlc] / projects / macosx / framework / Pre-Compile.sh
index 220dece86e0cea7b1ce0b5587f4da8c80c74c7d9..de9da9d52e21a149a5995dd17984e96b561e0bbf 100644 (file)
@@ -1,15 +1,17 @@
-if test "${ACTION}" = ""; then
-    # Debug --
-    TARGET_BUILD_DIR="."
-    FULL_PRODUCT_NAME="VLCKit.framework"
-    CONTENTS_FOLDER_PATH="${FULL_PRODUCT_NAME}/Versions/A"
-    VLC_BUILD_DIR="../../.."
-    VLC_SRC_DIR="../../.."
-    ACTION="build"
-    rm -fr ${FULL_PRODUCT_NAME}
-    # Debug --
-# Hack to use that script with the current VLC-release.app
-elif test "${ACTION}" = "release-makefile"; then
+#!/bin/sh
+#
+# Pre-Compile.sh
+#
+# Script that install libvlc and its modules inside VLCKit.
+#
+# This is for some creepy reasons also used by legacy VLC-release.app or
+# the moz plugin.
+
+
+#
+# We are building VLC-release.app or the moz plugin
+#
+if test "${ACTION}" = "release-makefile"; then
     echo "running Pre-Compile.sh in release-makefile mode"
 
     FULL_PRODUCT_NAME="${PRODUCT}"
@@ -23,161 +25,247 @@ elif test "${ACTION}" = "release-makefile"; then
     VLC_SRC_DIR="${src_dir}"
     ACTION="build"
     RELEASE_MAKEFILE="yes"
+    use_archs="no"
+    main_build_dir="${VLC_BUILD_DIR}"
+else
+    use_archs="yes"
+    main_build_dir="${VLC_BUILD_DIR}/x86_64"
+    echo "Building for $ARCHS"
 fi
 
-if test "${ACTION}" = "build"; then    
-    lib="lib"
-    modules="modules"
-    share="share"
-    include="include"
-    target="${TARGET_BUILD_DIR}/${CONTENTS_FOLDER_PATH}"
-    target_lib="${target}/${lib}"            # Should we consider using a different well-known folder like shared resources?
-    target_modules="${target}/${modules}"    # Should we consider using a different well-known folder like shared resources?
-    target_share="${target}/${share}"    # Should we consider using a different well-known folder like shared resources?
-    target_include="${target}/${include}"    # Should we consider using a different well-known folder like shared resources?
-    linked_libs=" "
-    
-    ##########################
-    # @function install_library(src_lib, dest_dir, type, lib_install_prefix, destination_name)
-    # @description Installs the specified library into the destination folder, automatically changes the references to dependencies
-    # @param src_lib     source library to copy to the destination directory
-    # @param dest_dir    destination directory where the src_lib should be copied to
-    install_library() { 
-   
-        if [ ${3} = "library" ]; then
-            local install_name="@loader_path/lib"
-        elif [ ${3} = "module" ]; then
-            local install_name="@loader_path/modules"
-        fi
-        if [ "${5}" != "" ]; then
-            local lib_dest="${2}/${5}"
-        else
-            local lib_dest="${2}/`basename ${1}`"
-        fi
+if test "${ACTION}" = "clean"; then
+    rm -Rf "${VLC_BUILD_DIR}/tmp"
+    exit 0
+fi
 
-        if [ "${4}" != "" ]; then
-            local lib_install_prefix="${4}"
+if test "${ACTION}" != "build"; then
+    echo "This script is supposed to run from xcodebuild or Xcode"
+    exit 1
+fi
+
+lib="lib"
+plugins="plugins"
+share="share"
+include="include"
+target="${TARGET_BUILD_DIR}/${CONTENTS_FOLDER_PATH}"
+target_bin="${target}/bin"
+target_lib="${target}/${lib}"            # Should we consider using a different well-known folder like shared resources?
+target_plugins="${target}/${plugins}"    # Should we consider using a different well-known folder like shared resources?
+target_share="${target}/${share}"    # Should we consider using a different well-known folder like shared resources?
+target_include="${target}/${include}"    # Should we consider using a different well-known folder like shared resources?
+linked_libs=""
+prefix=".libs/"
+suffix="dylib"
+
+
+##########################
+# @function vlc_install_object(src_lib, dest_dir, type, lib_install_prefix, destination_name, suffix)
+# @description Installs the specified library into the destination folder, automatically changes the references to dependencies
+# @param src_lib     source library to copy to the destination directory
+# @param dest_dir    destination directory where the src_lib should be copied to
+vlc_install_object() {
+
+    local src_lib=${1}
+    local dest_dir=${2}
+    local type=${3}
+    local lib_install_prefix=${4}
+    local destination_name=${5}
+    local suffix=${6}
+
+    if [ $type = "lib" ]; then
+        local install_name="@loader_path/lib"
+    elif [ $type = "module" ]; then
+        local install_name="@loader_path/plugins"
+    fi
+    if [ "$destination_name" != "" ]; then
+        local lib_dest="$dest_dir/$destination_name$suffix"
+        local lib_name=`basename $destination_name`
+    else
+        local lib_dest="$dest_dir/`basename $src_lib`$suffix"
+        local lib_name=`basename $src_lib`
+    fi
+
+    if [ "x$lib_install_prefix" != "x" ]; then
+        local lib_install_prefix="$lib_install_prefix"
+    else
+        local lib_install_prefix="@loader_path/../lib"
+    fi
+
+    if ! test -e ${src_lib}; then
+        return
+    fi
+
+    if ((! test -e ${lib_dest}) || test ${src_lib} -nt ${lib_dest} ); then
+
+        mkdir -p ${dest_dir}
+
+        # Lets copy the library from the source folder to our new destination folder
+        if [ "${type}" = "bin" ]; then
+            install -m 755 ${src_lib} ${lib_dest}
         else
-            local lib_install_prefix="@loader_path/../lib"
+            install -m 644 ${src_lib} ${lib_dest}
         fi
 
-        if test -e ${1} && ((! test -e ${lib_dest}) || test ${1} -nt ${lib_dest} ); then
-            
-            mkdir -p ${2}
+        # Update the dynamic library so it will know where to look for the other libraries
+        echo "Installing ${type} `basename ${lib_dest}`"
 
-            # Lets copy the library from the source folder to our new destination folder
-            install -m 644 ${1} ${lib_dest}
-
-            # Update the dynamic library so it will know where to look for the other libraries
-            echo "Installing ${3} `basename ${lib_dest}`"
+        if [ "${type}" = "lib" ]; then
+            # Change the reference of libvlc.1 stored in the usr directory to libvlc.dylib in the framework's library directory
+            install_name_tool -id "${install_name}/${lib_name}" ${lib_dest} > /dev/null
+        fi
 
-            if [ "${3}" != "bin" ]; then
-                # Change the reference of libvlc.1 stored in the usr directory to libvlc.dylib in the framework's library directory
-                install_name_tool -id "${install_name}/`basename ${lib_dest}`" ${lib_dest} > /dev/null
-            fi
-    
+        if [ "${type}" != "data" ]; then
             # Iterate through each installed library and modify the references to other dynamic libraries to match the framework's library directory
             for linked_lib in `otool -L ${lib_dest}  | grep '(' | sed 's/\((.*)\)//'`; do
                 local name=`basename ${linked_lib}`
                 case "${linked_lib}" in
                     */vlc_build_dir/* | */vlc_install_dir/* | *vlc* | */extras/contrib/lib/*)
-#                        if test -e ${linked_lib}; then
+                        if test -e ${linked_lib}; then
                             install_name_tool -change "$linked_lib" "${lib_install_prefix}/${name}" "${lib_dest}"
                             linked_libs="${linked_libs} ${ref_lib}"
-                            install_library ${linked_lib} ${target_lib} "library"
-#                        fi
+                            vlc_install_object ${linked_lib} ${target_lib} "library"
+                        fi
                         ;;
                 esac
             done
-         fi
-    }
-    # @function install_library
-    ##########################
-
-    prefix=".libs/"
-    suffix="dylib"
-
-    ##########################
-    # Hack for VLC-release.app
-    if [ "$FULL_PRODUCT_NAME" = "VLC-release.app" ] ; then
-        install_library "${VLC_BUILD_DIR}/bin/${prefix}vlc" "${target}" "bin" "@loader_path/lib"
-        mv ${target}/vlc ${target}/VLC
-        chmod +x ${target}/VLC
-    elif [ "$FULL_PRODUCT_NAME" = "VLC-Plugin.plugin" ] ; then
-        # install Safari webplugin
-        install_library "${VLC_BUILD_DIR}/projects/mozilla/${prefix}npvlc.${suffix}" "${target}" "library" "@loader_path/lib"
-        mv ${target}/npvlc.${suffix} "${target}/VLC Plugin"
-        chmod +x "${target}/VLC Plugin"
-    fi
-
-    ##########################
-    # Build the modules folder (Same as VLCKit.framework/modules in Makefile)
-    echo "Building modules folder..."
-    # Figure out what modules are available to install
-    for module in `find ${VLC_BUILD_DIR}/modules -name *.${suffix}` ; do
-        # Check to see that the reported module actually exists
-        if test -n ${module}; then
-            install_library ${module} ${target_modules} "module"
         fi
-    done
-    # Build the modules folder
-    ##########################
+     fi
+}
+# @function vlc_install
+##########################
 
-    ##########################
-    # Create a symbolic link in the root of the framework
-    mkdir -p ${target_lib}
-    mkdir -p ${target_modules}
+##########################
+# @function vlc_install(src_lib_dir, src_lib_name, dest_dir, type, lib_install_prefix)
+# @description Installs the specified library into the destination folder, automatically changes the references to dependencies
+# @param src_lib     source library to copy to the destination directory
+# @param dest_dir    destination directory where the src_lib should be copied to
+vlc_install() {
+    local src_dir=$1
+    local src=$2
+    local dest_dir=$3
+    local type=$4
 
-    if [ "$RELEASE_MAKEFILE" != "yes" ] ; then
-        pushd `pwd` > /dev/null
-        cd ${TARGET_BUILD_DIR}/${FULL_PRODUCT_NAME}
+    if test "$use_archs" = "no"; then
+        vlc_install_object "$VLC_BUILD_DIR/$src_dir/$src" "$dest_dir" "$type" $5
+    else
+        if test $type = "data"; then
+            vlc_install_object "$main_build_dir/$src_dir/$src" "$dest_dir" "$type" $5
+        else
+            fatdest="$dest_dir/$2"
+            shouldUpdateFat="no"
 
-        ln -sf Versions/Current/${lib} .
-        ln -sf Versions/Current/${modules} .
-        ln -sf Versions/Current/${include} .
-        ln -sf Versions/Current/${share} .
+            objects=""
 
-        popd > /dev/null
-    fi
+            # Create a temporary destination dir to store each ARCH object file
+            tmp_dest_dir="$VLC_BUILD_DIR/tmp/$type"
+            rm -Rf "${tmp_dest_dir}/*"
+            mkdir -p "$tmp_dest_dir"
+
+            for arch in $ARCHS; do
+                local src="$VLC_BUILD_DIR/$arch/$src_dir/$src"
 
-    ##########################
-    # Build the library folder
-    echo "Building library folder... ${linked_libs}"
-    for linked_lib in ${linked_libs} ; do
-        case "${linked_lib}" in
-            */extras/contrib/lib/*.dylib|*/vlc_install_dir/lib/*.dylib)
-                if test -e ${linked_lib}; then
-                    install_library ${linked_lib} ${target_lib} "library"
+                # Only install if the new image is newer than the one we have installed.
+                if ((! test -e ${fatdest}) || test ${src} -nt ${fatdest} ); then
+                    vlc_install_object "$src" "$tmp_dest_dir" "$type" "$5" "" ".$arch"
+                    local dest="$tmp_dest_dir/$src.$arch"
+                    if test -e ${dest}; then
+                        if ! test "$dest_dir/$src" -nt "${dest}"; then
+                            shouldUpdateFat="yes"
+                        fi
+                        objects="${dest} $objects"
+                    else
+                        echo "Warning: building $src without $arch"
+                    fi
                 fi
-                ;;
-        esac
-    done
-
-    install_library "${VLC_BUILD_DIR}/src/${prefix}libvlc.2.dylib" "${target_lib}" "library"
-    install_library "${VLC_BUILD_DIR}/src/${prefix}libvlccore.2.dylib" "${target_lib}" "library"
-    ln -sf ${target_lib}/libvlc.2.dylib ${target_lib}/libvlc.dylib
-    ln -sf ${target_lib}/libvlccore.2.dylib ${target_lib}/libvlccore.dylib
-
-    ##########################
-    # Build the share folder
-    if [ "$FULL_PRODUCT_NAME" = "VLC-release.app" ] ; then
-        echo "Building share folder..."
-        pbxcp="/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -resolve-src-symlinks"
-        mkdir -p ${target_share}
-        $pbxcp ${VLC_SRC_DIR}/share/lua ${target_share}
-    else
-        echo "Share folder not needed for this product"
-    fi 
-    
-
-    ##########################
-    # Exporting headers
-    if [ "$FULL_PRODUCT_NAME" = "VLC-release.app" ] ; then
-        echo "Exporting headers..."
-        mkdir -p ${target_include}/vlc
-        $pbxcp ${VLC_SRC_DIR}/include/vlc/*.h ${target_include}/vlc
-    else
-        echo "Headers not needed for this product"
+            done;
+
+            if test "$shouldUpdateFat" = "yes"; then
+                echo "Creating fat $type $fatdest"
+                lipo $objects -output "$fatdest" -create
+            fi
+        fi
+    fi
+}
+# @function vlc_install
+##########################
+
+##########################
+# Create a symbolic link in the root of the framework
+mkdir -p ${target_lib}
+mkdir -p ${target_plugins}
+mkdir -p ${target_bin}
+
+if [ "$RELEASE_MAKEFILE" != "yes" ] ; then
+    pushd `pwd` > /dev/null
+    cd ${TARGET_BUILD_DIR}/${FULL_PRODUCT_NAME}
+
+    ln -sf Versions/Current/${lib} .
+    ln -sf Versions/Current/${plugins} .
+    ln -sf Versions/Current/${include} .
+    ln -sf Versions/Current/${share} .
+    ln -sf Versions/Current/bin .
+    ln -sf ../plugins Versions/Current/bin
+    ln -sf ../share Versions/Current/bin
+
+    popd > /dev/null
+fi
+
+##########################
+# Hack for VLC-release.app
+if [ "$FULL_PRODUCT_NAME" = "VLC-release.app" ] ; then
+    vlc_install "bin/${prefix}" "vlc" "${target}" "bin" "@loader_path/lib"
+    mv ${target}/vlc ${target}/VLC
+    chmod +x ${target}/VLC
+elif [ "$FULL_PRODUCT_NAME" = "VLC-Plugin.plugin" ] ; then
+    # install Safari webplugin
+    vlc_install "projects/mozilla/${prefix}" "npvlc.${suffix}" "${target}" "lib" "@loader_path/lib"
+    mv ${target}/npvlc.${suffix} "${target}/VLC Plugin"
+    chmod +x "${target}/VLC Plugin"
+else
+    vlc_install "bin/${prefix}" "vlc" "${target}/bin" "bin" "@loader_path/../lib"
+fi
+
+
+##########################
+# Build the plugins folder (Same as VLCKit.framework/plugins in Makefile)
+echo "Building plugins folder..."
+# Figure out what plugins are available to install
+for module in `find ${main_build_dir}/modules -path "*dylib.dSYM*" -prune -o -name "lib*_plugin.dylib" -print | sed -e s:${main_build_dir}/::` ; do
+    # Check to see that the reported module actually exists
+    if test -n ${module}; then
+        vlc_install `dirname ${module}` `basename ${module}` ${target_plugins} "module"
     fi
+done
+
+# Install the module cache
+cache=`ls ${main_build_dir}/modules/plugins-*.dat | sed -e s:${main_build_dir}/::`
+vlc_install `dirname ${cache}` `basename ${cache}` ${target_plugins} "data"
+
+# Build the lib folder
+##########################
+
+vlc_install "src/${prefix}" "libvlc.5.dylib" "${target_lib}" "lib"
+vlc_install "src/${prefix}" "libvlccore.4.dylib" "${target_lib}" "lib"
+pushd `pwd` > /dev/null
+cd ${target_lib}
+ln -sf libvlc.5.dylib libvlc.dylib
+ln -sf libvlccore.4.dylib libvlccore.dylib
+popd > /dev/null
+
+##########################
+# Build the share folder
+echo "Building share folder..."
+pbxcp="/Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -resolve-src-symlinks"
+mkdir -p ${target_share}
+$pbxcp ${main_build_dir}/share/lua ${target_share}
+
 
+##########################
+# Exporting headers
+if [ "$FULL_PRODUCT_NAME" = "VLC-release.app" ] ; then
+    echo "Exporting headers..."
+    mkdir -p ${target_include}/vlc
+    $pbxcp ${VLC_SRC_DIR}/include/vlc/*.h ${target_include}/vlc
+else
+    echo "Headers not needed for this product"
 fi