From ccca198c1b1730b0241911cb56dc8e3504958b2a Mon Sep 17 00:00:00 2001 From: Alexander Karatarakis Date: Sun, 18 Sep 2016 20:50:08 -0700 Subject: Initial commit --- scripts/templates/portfile.in.cmake | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 scripts/templates/portfile.in.cmake (limited to 'scripts/templates') diff --git a/scripts/templates/portfile.in.cmake b/scripts/templates/portfile.in.cmake new file mode 100644 index 000000000..b29e2b682 --- /dev/null +++ b/scripts/templates/portfile.in.cmake @@ -0,0 +1,21 @@ +include(vcpkg_common_functions) +vcpkg_download_distfile(ARCHIVE + URL "@URL@" + FILENAME "@FILENAME@" + MD5 @MD5@ +) +vcpkg_extract_source_archive(${ARCHIVE}) + +vcpkg_configure_cmake( + SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/@ROOT_NAME@ + # OPTIONS -DUSE_THIS_IN_ALL_BUILDS=1 -DUSE_THIS_TOO=2 + # OPTIONS_RELEASE -DOPTIMIZE=1 + # OPTIONS_DEBUG -DDEBUGGABLE=1 +) + +vcpkg_build_cmake() +vcpkg_install_cmake() + +# Handle copyright +#file(COPY ${CURRENT_BUILDTREES_DIR}/src/@ROOT_NAME@/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/@PORT@) +#file(RENAME ${CURRENT_PACKAGES_DIR}/share/@PORT@/LICENSE ${CURRENT_PACKAGES_DIR}/share/@PORT@/copyright) \ No newline at end of file -- cgit v1.2.3