aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/libunistring/portfile.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'vcpkg/ports/libunistring/portfile.cmake')
-rw-r--r--vcpkg/ports/libunistring/portfile.cmake57
1 files changed, 57 insertions, 0 deletions
diff --git a/vcpkg/ports/libunistring/portfile.cmake b/vcpkg/ports/libunistring/portfile.cmake
new file mode 100644
index 0000000..6f6b9f4
--- /dev/null
+++ b/vcpkg/ports/libunistring/portfile.cmake
@@ -0,0 +1,57 @@
+set(LIBUNISTRING_FILENAME "libunistring-${VERSION}.tar.xz")
+
+vcpkg_download_distfile(ARCHIVE
+ URLS
+ "https://www.mirrorservice.org/sites/ftp.gnu.org/gnu/libunistring/${LIBUNISTRING_FILENAME}"
+ "https://ftp.gnu.org/gnu/libunistring/${LIBUNISTRING_FILENAME}"
+ FILENAME "${LIBUNISTRING_FILENAME}"
+ SHA512 5fbb5a0a864db73a6d18cdea7b31237da907fff0ef288f3a8db6ebdba8ef61ad8855e5fc780c2bbf632218d8fa59dd119734e5937ca64dc77f53f30f13b80b17
+)
+
+if(VCPKG_TARGET_IS_WINDOWS)
+ list(APPEND OPTIONS
+ # On windows during configure tests iconv is properly linked,
+ # but iconv-2.dll missing from the directory where check program is built
+ # causes one of the tests to fail and in result builds libunistring
+ # without iconv support, this flag allows to bypass the test.
+ #
+ # The failing test is "checking for working iconv", while in previous
+ # test "checking for iconv", configure only checks linking, in
+ # "checking for working iconv" it also runs resulting test application.
+ am_cv_func_iconv_works=yes
+ )
+endif()
+
+vcpkg_extract_source_archive(SOURCE_PATH
+ ARCHIVE "${ARCHIVE}"
+ SOURCE_BASE "v${VERSION}"
+ PATCHES
+ disable-gnulib-fetch.patch
+ disable-subdirs.patch
+ parallelize-symbol-collection.patch
+ msvc-use-stdint.patch
+)
+
+vcpkg_configure_make(
+ SOURCE_PATH "${SOURCE_PATH}"
+ AUTOCONFIG
+ USE_WRAPPERS
+ OPTIONS
+ ${OPTIONS}
+ OPTIONS
+ "--with-libiconv-prefix=${CURRENT_INSTALLED_DIR}"
+)
+
+vcpkg_install_make()
+vcpkg_fixup_pkgconfig()
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
+
+vcpkg_install_copyright(
+ COMMENT [[
+The libunistring library and its header files are dual-licensed under
+"the GNU LGPLv3+ or the GNU GPLv2+".
+]]
+ FILE_LIST
+ "${SOURCE_PATH}/COPYING.LIB"
+ "${SOURCE_PATH}/COPYING"
+)