diff options
| author | Bert Huijben <rhuijben@users.noreply.github.com> | 2016-11-03 14:00:49 +0100 |
|---|---|---|
| committer | Bert Huijben <rhuijben@users.noreply.github.com> | 2016-11-03 14:00:49 +0100 |
| commit | 56a30ed4bc551aae29748d0aeae818bb78e1b522 (patch) | |
| tree | 7fceff38e798c35a6c5f1fb99361612177dd246b | |
| parent | a868bc96da158f3b2dcbc9e8e406b9577a8a1ab0 (diff) | |
| download | vcpkg-56a30ed4bc551aae29748d0aeae818bb78e1b522.tar.gz vcpkg-56a30ed4bc551aae29748d0aeae818bb78e1b522.zip | |
Add APR port
| -rw-r--r-- | ports/apr/CONTROL | 3 | ||||
| -rw-r--r-- | ports/apr/portfile.cmake | 34 |
2 files changed, 37 insertions, 0 deletions
diff --git a/ports/apr/CONTROL b/ports/apr/CONTROL new file mode 100644 index 000000000..067f5cb1d --- /dev/null +++ b/ports/apr/CONTROL @@ -0,0 +1,3 @@ +Source: apr
+Version: 1.5.2
+Description: The Apache Portable Runtime (APR) is a C library that forms a system portability layer that covers many operating systems.
diff --git a/ports/apr/portfile.cmake b/ports/apr/portfile.cmake new file mode 100644 index 000000000..a32848f28 --- /dev/null +++ b/ports/apr/portfile.cmake @@ -0,0 +1,34 @@ +# 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/apr-1.5.2)
+vcpkg_download_distfile(ARCHIVE
+ URLS "https://www.apache.org/dist/apr/apr-1.5.2.tar.bz2"
+ FILENAME "apr-1.5.2.tar.bz2"
+ SHA512 d1156ad16abf07887797777b56c2147c890f16d8445829b3e3b4917950d24c5fd2f8febd439992467a5ea0511da562c0fb4a7cfd8a235ab55882388bfa2b919d
+)
+vcpkg_extract_source_archive(${ARCHIVE})
+
+vcpkg_configure_cmake(
+ SOURCE_PATH ${SOURCE_PATH}
+ OPTIONS -DINSTALL_PDB=OFF -DMIN_WINDOWS_VER=Windows7 -DAPR_HAVE_IPV6=ON
+ # OPTIONS -DUSE_THIS_IN_ALL_BUILDS=1 -DUSE_THIS_TOO=2
+ # OPTIONS_RELEASE -DOPTIMIZE=1
+ # OPTIONS_DEBUG -DDEBUGGABLE=1
+)
+
+vcpkg_install_cmake()
+
+# There is no way to suppress installation of the headers and resource files in build.
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
+
+# Handle copyright
+file(COPY ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/apr)
+file(RENAME ${CURRENT_PACKAGES_DIR}/share/apr/LICENSE ${CURRENT_PACKAGES_DIR}/share/apr/copyright)
|
