]> git.sesse.net Git - vlc/blobdiff - projects/macosx/framework/Pre-Compile.sh
macosx/framework: Try to clean up a little bit the now very messy Pre-Compile.sh...
[vlc] / projects / macosx / framework / Pre-Compile.sh
index fe503244c8148e11a56af1ddd5df8d5f422a7d97..80bb3d192d976454579317e7b27b06f61192cd04 100644 (file)
@@ -8,95 +8,120 @@ if test "${ACTION}" = ""; then
     ACTION="build"
     rm -fr ${FULL_PRODUCT_NAME}
     # Debug --
-fi
-
 # Hack to use that script with the current VLC-release.app
-if test "${ACTION}" = "VLC-release.app"; then
-    TARGET_BUILD_DIR="${build_dir}"
-    FULL_PRODUCT_NAME="VLC-release.app"
+elif test "${ACTION}" = "release-makefile"; then
+    echo "running Pre-Compile.sh in release-makefile mode"
+
+    FULL_PRODUCT_NAME="${PRODUCT}"
+    if [ "$FULL_PRODUCT_NAME" = "VLC-Plugin.plugin" ] ; then
+        TARGET_BUILD_DIR="${src_dir}"
+    else
+        TARGET_BUILD_DIR="${build_dir}"
+    fi
     CONTENTS_FOLDER_PATH="${FULL_PRODUCT_NAME}/Contents/MacOS"
     VLC_BUILD_DIR="${build_dir}"
     VLC_SRC_DIR="${src_dir}"
     ACTION="build"
+    RELEASE_MAKEFILE="yes"
 fi
 
-if test "${ACTION}" = "build"; then    
+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?
-    linked_libs=" "
-    
+    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)
+    # @function vlc_install(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
+    vlc_install() {
+
+        local src_lib=${1}
+        local dest_dir=${2}
+        local type=${3}
+        local lib_install_prefix=${4}
+        local destination_name=${5}
+
+        if [ $type = "library" ]; then
             local install_name="@loader_path/lib"
-        elif [ ${3} = "module" ]; then
+        elif [ $type = "module" ]; then
             local install_name="@loader_path/modules"
         fi
-        if [ "${5}" != "" ]; then
-            local lib_dest="${2}/${5}"
+        if [ "$destination_name" != "" ]; then
+            local lib_dest="$dest_dir/$destination_name"
         else
-            local lib_dest="${2}/`basename ${1}`"
+            local lib_dest="$dest_dir/`basename $src_lib`"
         fi
 
-        if [ "${4}" != "" ]; then
-            local lib_install_prefix="${4}"
+        if [ "$lib_install_prefix" != "" ]; then
+            local lib_install_prefix="$lib_install_prefix"
         else
             local lib_install_prefix="@loader_path/../lib"
         fi
-        
-        if test -e ${1} && ((! test -e ${lib_dest}) || test ${1} -nt ${lib_dest} ); then
-            
-            mkdir -p ${2}
+
+        if test -e ${src_lib} && ((! 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
-            install -m 644 ${1} ${lib_dest}
+            if [ "${type}" = "bin" ]; then
+                install -m 755 ${src_lib} ${lib_dest}
+            else
+                install -m 644 ${src_lib} ${lib_dest}
+            fi
 
             # Update the dynamic library so it will know where to look for the other libraries
-            echo "Installing ${3} `basename ${lib_dest}`"
+            echo "Installing ${type} `basename ${lib_dest}`"
 
-            if [ "${3}" != "bin" ]; then
+            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}/`basename ${lib_dest}`" ${lib_dest} > /dev/null
             fi
-    
-            # 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* | */extras/contrib/lib/*)
-                        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
-                        ;;
-                esac
-            done
+
+            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
+                                install_name_tool -change "$linked_lib" "${lib_install_prefix}/${name}" "${lib_dest}"
+                                linked_libs="${linked_libs} ${ref_lib}"
+                                vlc_install ${linked_lib} ${target_lib} "library"
+                            fi
+                            ;;
+                    esac
+                done
+            fi
          fi
     }
-    # @function install_library
+    # @function vlc_install
     ##########################
 
+    prefix=".libs/"
+    suffix="dylib"
+
     ##########################
     # Hack for VLC-release.app
     if [ "$FULL_PRODUCT_NAME" = "VLC-release.app" ] ; then
-        prefix=".libs/"
-        install_library "${VLC_BUILD_DIR}/src/${prefix}vlc" "${target}" "bin" "@loader_path/lib"
-        install ${target}/vlc ${target}/VLC
-        suffix="dylib"
+        vlc_install "${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
+        vlc_install "${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"
     else
-        prefix=""
-        suffix="so"
+        vlc_install "${VLC_BUILD_DIR}/bin/${prefix}vlc" "${target}/bin" "bin" "@loader_path/../lib"
     fi
 
     ##########################
@@ -106,7 +131,7 @@ if test "${ACTION}" = "build"; then
     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"
+            vlc_install ${module} ${target_modules} "module"
         fi
     done
     # Build the modules folder
@@ -116,38 +141,42 @@ if test "${ACTION}" = "build"; then
     # Create a symbolic link in the root of the framework
     mkdir -p ${target_lib}
     mkdir -p ${target_modules}
-    
-    pushd `pwd` > /dev/null 
-    cd ${TARGET_BUILD_DIR}/${FULL_PRODUCT_NAME}
-    
-    ln -sf Versions/Current/${lib} .
-    ln -sf Versions/Current/${modules} .
-    
-    popd > /dev/null 
-    # Create a symbolic link in the root of the framework
-    ##########################
-    
+
+    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/${modules} .
+        ln -sf Versions/Current/${include} .
+        ln -sf Versions/Current/${share} .
+        ln -sf Versions/Current/bin .
+        ln -sf ../modules Versions/Current/bin
+        ln -sf ../share Versions/Current/bin
+
+        popd > /dev/null
+    fi
+
     ##########################
     # 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)
-                if test -e ${linked_lib}; then
-                    install_library ${linked_lib} ${target_lib} "library"
-                fi
-                ;;
-            */vlc_install_dir/lib/*.dylib)
+            */extras/contrib/lib/*.dylib|*/vlc_install_dir/lib/*.dylib)
                 if test -e ${linked_lib}; then
-                    install_library ${linked_lib} ${target_lib} "library"
+                    vlc_install ${linked_lib} ${target_lib} "library"
                 fi
                 ;;
         esac
     done
 
-
-    install_library "${VLC_BUILD_DIR}/src/${prefix}libvlc-control.dylib" ${target_lib} "library"
-    install_library "${VLC_BUILD_DIR}/src/${prefix}libvlc.dylib" ${target_lib} "library"
+    vlc_install "${VLC_BUILD_DIR}/src/${prefix}libvlc.5.dylib" "${target_lib}" "library"
+    vlc_install "${VLC_BUILD_DIR}/src/${prefix}libvlccore.4.dylib" "${target_lib}" "library"
+    pushd `pwd` > /dev/null
+    cd ${TARGET_BUILD_DIR}/${FULL_PRODUCT_NAME}/lib
+    ln -sf libvlc.5.dylib libvlc.dylib
+    ln -sf libvlccore.4.dylib libvlccore.dylib
+    popd > /dev/null
 
     ##########################
     # Build the share folder
@@ -155,4 +184,16 @@ if test "${ACTION}" = "build"; then
     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}
+
+
+    ##########################
+    # 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
+
 fi