I have downloaded the icu4c-61_1-Ubuntu16.04-x64.tgz from the http://site.icu-project.org/download/61#TOC-ICU4C-Download site. I do not see any installation instruction there. In my NetBeans C/C++ 'Ant Library Manager' the button 'New Library' and other fields are inactive - inaccessible. (In the NetBeans, C debugging works.)
In the filesystem, is there a directory where the unpacked library should be placed and/or a file where the information should be added? Thanks!
From the FAQ:
To extract the archive's
icu/usr/local
to/usr/local
:The
tar
options:-C /usr/local
: to put the extracted files in/usr/local
./icu/usr/local
: to extract only the contents of./icu/usr/local
of from the archive (skipping the mostly uselessreadme.txt
)--strip-components=4
: to extract the files, but remove the leading 4 components (./icu/usr/local
) from the paths, since we're already extracting to/usr/local
.If you have used
pkg-config
before,icu-config
seems to be a similar script.