diff options
| author | vlj <vljn.ovi@gmail.com> | 2016-10-14 19:21:35 +0200 |
|---|---|---|
| committer | vlj <vljn.ovi@gmail.com> | 2016-10-17 13:44:15 +0200 |
| commit | 7fdeeacc8fd59c1ff266fa9d6ca19ff1936507cc (patch) | |
| tree | 41f195d4b9f49000f6762733dd92a7b897dc42b4 | |
| parent | 173ddcd45a5cac0a3d57ba855d543b8b1788e3ac (diff) | |
| download | vcpkg-7fdeeacc8fd59c1ff266fa9d6ca19ff1936507cc.tar.gz vcpkg-7fdeeacc8fd59c1ff266fa9d6ca19ff1936507cc.zip | |
Add physfs.
| -rw-r--r-- | ports/physfs/CONTROL | 3 | ||||
| -rw-r--r-- | ports/physfs/portfile.cmake | 30 |
2 files changed, 33 insertions, 0 deletions
diff --git a/ports/physfs/CONTROL b/ports/physfs/CONTROL new file mode 100644 index 000000000..e279928ae --- /dev/null +++ b/ports/physfs/CONTROL @@ -0,0 +1,3 @@ +Source: physfs +Version: +Description: diff --git a/ports/physfs/portfile.cmake b/ports/physfs/portfile.cmake new file mode 100644 index 000000000..463d1b8a7 --- /dev/null +++ b/ports/physfs/portfile.cmake @@ -0,0 +1,30 @@ +# Common Ambient Variables: +# VCPKG_ROOT_DIR = <C:\path\to\current\vcpkg> +# TARGET_TRIPLET is the current triplet (x86-windows, etc) +# PORT is the current port name (zlib, etc) +# CURRENT_BUILDTREES_DIR = ${VCPKG_ROOT_DIR}\buildtrees\${PORT} +# CURRENT_PACKAGES_DIR = ${VCPKG_ROOT_DIR}\packages\${PORT}_${TARGET_TRIPLET} +# + +include(${CMAKE_TRIPLET_FILE}) +include(vcpkg_common_functions) +set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/physfs-2.0.3) +vcpkg_download_distfile(ARCHIVE + URLS "https://icculus.org/physfs/downloads/physfs-2.0.3.tar.bz2" + FILENAME "physfs-2.0.3.tar.bz2" + SHA512 47eff0c81b8dc3bb526766b0a8ad2437d2951867880116d6e6e8f2ec1490e263541fb741867fed6517cc3fa8a9c5651b36e3e02a499f19cfdc5c7261c9707e80 +) +vcpkg_extract_source_archive(${ARCHIVE}) + +vcpkg_configure_cmake( + SOURCE_PATH ${SOURCE_PATH} +) + +vcpkg_install_cmake() +file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) +file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/bin/test_physfs.exe) +file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/bin/test_physfs.exe) + +# Handle copyright +file(COPY ${SOURCE_PATH}/LICENSE.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/physfs) +file(RENAME ${CURRENT_PACKAGES_DIR}/share/physfs/LICENSE.txt ${CURRENT_PACKAGES_DIR}/share/physfs/copyright) |
