aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCurtis J Bezault <curtbezault@gmail.com>2019-05-14 16:20:32 -0700
committerGitHub <noreply@github.com>2019-05-14 16:20:32 -0700
commit3f5e477bda8339ca09accea7cf66146775ce8802 (patch)
treec7eaf14fe27f3f8c736f026ca5a2848783e0404b
parenta5ad9322e5a2d2e3d716e89349957ef893371219 (diff)
downloadvcpkg-3f5e477bda8339ca09accea7cf66146775ce8802.tar.gz
vcpkg-3f5e477bda8339ca09accea7cf66146775ce8802.zip
[USD] New port (#6451)
* initial usd port * [usd] Acquire python2 required to build * Use copy instead of rename Handle the source path and the package path being on different partitions.
-rw-r--r--ports/usd/CONTROL4
-rw-r--r--ports/usd/portfile.cmake56
2 files changed, 60 insertions, 0 deletions
diff --git a/ports/usd/CONTROL b/ports/usd/CONTROL
new file mode 100644
index 000000000..58a564ad7
--- /dev/null
+++ b/ports/usd/CONTROL
@@ -0,0 +1,4 @@
+Source: usd
+Version: 0.8.4
+Build-Depends: boost-assign, boost-crc, boost-date-time, boost-filesystem, boost-format, boost-multi-index, boost-program-options, boost-regex, boost-system, boost-vmd, tbb, zlib
+Description: Universal Scene Description (USD) is an efficient, scalable system for authoring, reading, and streaming time-sampled scene description for interchange between graphics applications.
diff --git a/ports/usd/portfile.cmake b/ports/usd/portfile.cmake
new file mode 100644
index 000000000..a648e334a
--- /dev/null
+++ b/ports/usd/portfile.cmake
@@ -0,0 +1,56 @@
+# Don't file if the bin folder exists. We need exe and custom files.
+SET(VCPKG_POLICY_EMPTY_PACKAGE enabled)
+
+include(vcpkg_common_functions)
+
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO PixarAnimationStudios/USD
+ REF v19.05
+ SHA512 4d708835f6efd539d5fff5cbaf0ec4d68c6d0c4d813ee531c4b9589ee585b720c34e993ef0a7ad0104a921ebd7ab8dec46d0c9284ec7f11993057fe81d3729e0
+ HEAD_REF master
+)
+
+vcpkg_find_acquire_program(PYTHON2)
+get_filename_component(PYTHON2_DIR "${PYTHON2}" DIRECTORY)
+vcpkg_add_to_path("${PYTHON2_DIR}")
+
+vcpkg_configure_cmake(
+ SOURCE_PATH ${SOURCE_PATH}
+ OPTIONS
+ -DPXR_BUILD_ALEMBIC_PLUGIN:BOOL=OFF
+ -DPXR_BUILD_EMBREE_PLUGIN:BOOL=OFF
+ -DPXR_BUILD_IMAGING:BOOL=OFF
+ -DPXR_BUILD_MAYA_PLUGIN:BOOL=OFF
+ -DPXR_BUILD_MONOLITHIC:BOOL=OFF
+ -DPXR_BUILD_TESTS:BOOL=OFF
+ -DPXR_BUILD_USD_IMAGING:BOOL=OFF
+ -DPXR_ENABLE_PYTHON_SUPPORT:BOOL=OFF
+)
+
+vcpkg_install_cmake()
+
+file(
+ RENAME
+ "${CURRENT_PACKAGES_DIR}/pxrConfig.cmake"
+ "${CURRENT_PACKAGES_DIR}/cmake/pxrConfig.cmake")
+
+vcpkg_fixup_cmake_targets(CONFIG_PATH "cmake")
+
+vcpkg_copy_pdbs()
+
+# Remove duplicates in debug folder
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
+
+# Handle copyright
+file(
+ COPY ${SOURCE_PATH}/LICENSE.txt
+ DESTINATION ${CURRENT_PACKAGES_DIR}/share/usd/copyright)
+
+# Move all dlls to bin
+file(GLOB RELEASE_DLL ${CURRENT_PACKAGES_DIR}/lib/*.dll)
+file(GLOB DEBUG_DLL ${CURRENT_PACKAGES_DIR}/debug/lib/*.dll)
+foreach(CURRENT_FROM ${RELEASE_DLL} ${DEBUG_DLL})
+ string(REPLACE "/lib/" "/bin/" CURRENT_TO ${CURRENT_FROM})
+ file(RENAME ${CURRENT_FROM} ${CURRENT_TO})
+endforeach()