aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Karatarakis <alex@karatarakis.com>2018-09-04 19:04:49 -0700
committerGitHub <noreply@github.com>2018-09-04 19:04:49 -0700
commitacb791b228dbfea5229fdb0b7985acba41beba59 (patch)
treeaeb21f4c5211ff79a439b56df8b7278dbf435b58
parentabcb2e17f60cab7c9fff97e0e880799272886bb4 (diff)
parent60820a02eb8b35792a2568c3679d647bbcad1db6 (diff)
downloadvcpkg-acb791b228dbfea5229fdb0b7985acba41beba59.tar.gz
vcpkg-acb791b228dbfea5229fdb0b7985acba41beba59.zip
Merge pull request #4216 from tbeu/patch-1
Update zlib version
-rw-r--r--docs/examples/packaging-zlib.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/examples/packaging-zlib.md b/docs/examples/packaging-zlib.md
index 508947f1a..1d61cfee1 100644
--- a/docs/examples/packaging-zlib.md
+++ b/docs/examples/packaging-zlib.md
@@ -3,7 +3,7 @@
### Bootstrap with `create`
First, locate a globally accessible archive of the library's sources. Zip, gzip, and bzip are all supported. Strongly prefer official sources or mirrors over unofficial mirrors.
-*Looking at zlib's website, the URL http://zlib.net/zlib128.zip looks appropriate.*
+*Looking at zlib's website, the URL http://zlib.net/zlib1211.zip looks appropriate.*
Second, determine a suitable package name. This should be ASCII, lowercase, and recognizable to someone who knows the library's "human name". If the library is already packaged in another package manager, prefer that name.
@@ -11,7 +11,7 @@ Second, determine a suitable package name. This should be ASCII, lowercase, and
Finally, if the server's name for the archive is not very descriptive (such as downloading a zipped commit or branch from GitHub), choose a nice archive name of the form `<packagename>-<version>.zip`.
-*`zlib128.zip` is a fine name, so no change needed.*
+*`zlib1211.zip` is a fine name, so no change needed.*
All this information can then be passed into the `create` command, which will download the sources and bootstrap the packaging process inside `ports\<packagename>`.
@@ -26,7 +26,7 @@ In addition to the generated `ports\<package>\portfile.cmake`, we also need a `p
*For zlib2, we'll create the file `ports\zlib2\CONTROL` with the following contents:*
```no-highlight
Source: zlib2
-Version: 1.2.8
+Version: 1.2.11
Description: A Massively Spiffy Yet Delicately Unobtrusive Compression Library
```