aboutsummaryrefslogtreecommitdiff
path: root/docs/examples
diff options
context:
space:
mode:
authortbeu <tbeu@users.noreply.github.com>2018-09-02 20:56:19 +0200
committertbeu <tc@tbeu.de>2018-09-02 21:01:51 +0200
commit60820a02eb8b35792a2568c3679d647bbcad1db6 (patch)
treeb3bdf1f8aea5939b6c7bcfd38dafd57c90bbafc2 /docs/examples
parent88bc18918c91b6bccc95b41b5d4333a482102730 (diff)
downloadvcpkg-60820a02eb8b35792a2568c3679d647bbcad1db6.tar.gz
vcpkg-60820a02eb8b35792a2568c3679d647bbcad1db6.zip
Update zlib version
Diffstat (limited to 'docs/examples')
-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
```