Skip to content

Commit

Permalink
[vcpkg_find_acquire_program] add gettext's msgmerge
Browse files Browse the repository at this point in the history
Resolves: microsoft#13518
  • Loading branch information
wrobelda committed Sep 15, 2020
1 parent 76362dd commit cb9ac65
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions scripts/cmake/vcpkg_find_acquire_program.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
## - DOXYGEN
## - FLEX
## - GASPREPROCESSOR
## - GETTEXT_MSGMERGE
## - GPERF
## - PERL
## - PYTHON2
Expand Down Expand Up @@ -326,6 +327,15 @@ function(vcpkg_find_acquire_program VAR)
set(URL "https://sourceforge.net/projects/gnuwin32/files/gperf/${GPERF_VERSION}/gperf-${GPERF_VERSION}-bin.zip/download")
set(ARCHIVE "gperf-${GPERF_VERSION}-bin.zip")
set(HASH 3f2d3418304390ecd729b85f65240a9e4d204b218345f82ea466ca3d7467789f43d0d2129fcffc18eaad3513f49963e79775b10cc223979540fa2e502fe7d4d9)
elseif(VAR MATCHES "GETTEXT_MSGMERGE")
set(PROGNAME msgmerge)
set(GETTEXT_MSGMERGE_VERSION 0.21)
set(PATHS ${DOWNLOADS}/tools/msgmerge/bin)
set(URL "https://github.com/mlocati/gettext-iconv-windows/releases/download/v0.21-v1.16/gettext0.21-iconv1.16-static-32.zip")
set(ARCHIVE "gettext0.21-iconv1.16-static-32.zip")
set(HASH d079d212f4dc13073ce2704f183f96b35e294e458772c37587a9c4450efceedc1188b05229c55d221b60bc5f464786a9c75d2b3abd8cf45f5e48806c45740aba)
set(BREW_PACKAGE_NAME "gettext")
set(APT_PACKAGE_NAME "gettext")
elseif(VAR MATCHES "GASPREPROCESSOR")
set(NOEXTRACT true)
set(PROGNAME gas-preprocessor)
Expand Down

0 comments on commit cb9ac65

Please sign in to comment.