Update README to reflect this code's status as a fork

This commit is contained in:
Nick Thomas
2018-09-07 18:58:07 +01:00
parent 03c771153c
commit 54c89d9b1e

View File

@@ -32,16 +32,14 @@ sudo apt-get install pkg-config
Download and unarchive original icu4c archive from [icu download section](http://site.icu-project.org/download). Download and unarchive original icu4c archive from [icu download section](http://site.icu-project.org/download).
Example (for version 50.1): Example (for version 62.1):
``` ```
wget http://download.icu-project.org/files/icu4c/50.1/icu4c-50_1-src.tgz wget http://download.icu-project.org/files/icu4c/62.1/icu4c-62_1-src.zip
tar -zxvf icu4c-50_1-src.tgz tar -zxvf icu4c-62_1-src.zip
mv -i ./icu ~/where-you-store-libs mv -i ./icu ~/where-you-store-libs
``` ```
NOTE: If this link is not working or there are some problems with downloading, there is a stable version 50.1 snapshot saved in [Github Downloads](https://github.com/downloads/goodsign/icu/icu4c-50_1-src.tgz).
### Build and install icu4c C library ### Build and install icu4c C library
From the directory, where you unarchived icu4c, run: From the directory, where you unarchived icu4c, run:
@@ -57,8 +55,8 @@ sudo ldconfig
### Install Go wrapper ### Install Go wrapper
``` ```
go get github.com/goodsign/icu go get gitlab.com/lupine/icu
go test github.com/goodsign/icu (must PASS) go test gitlab.com/lupine/icu (must PASS)
``` ```
Installation notes Installation notes
@@ -134,11 +132,14 @@ icu4c Licence
ICU is released under a nonrestrictive open source license that is suitable for use with both commercial software and with other open source or free software. ICU is released under a nonrestrictive open source license that is suitable for use with both commercial software and with other open source or free software.
[LICENCE file](https://github.com/goodsign/icu/blob/master/LICENCE_icu) [LICENCE file](https://gitlab.com/lupine/icu/blob/master/LICENCE_icu)
Licence Licence
========== ==========
The goodsign/icu binding is released under the [BSD Licence](http://opensource.org/licenses/bsd-license.php) The `lupine/icu` binding is released under the [BSD Licence](http://opensource.org/licenses/bsd-license.php)
[LICENCE file](https://github.com/goodsign/icu/blob/master/LICENCE) [LICENCE file](https://gitlab.com/lupine/icu/blob/master/LICENCE)
`lupine/icu` is almost entirely based on [`goodsign/icu`](https://github.com/goodsign/icu),
but contains a few changes relative to that fine project.