uripp is a C++ library for parsing and generating conformant Uniform Resource Identifiers (URIs). Features are listed in the main page of the documentation.
configure
command has many
options. Use "-h" to see all the options and where the default
installation directories are located.
For example, to install to local 64-bit dir use:
"--libdir=/usr/local/lib64".> ./configure
> make check
> sudo make install
(Windows install has not be tried. Note src/apidefs.h
for
DLL import syntax.)
doc/index.html
doc/dxydocs
> cd tools
> doxygen uripp.dxy
doc
directory's files as static html to this
project's web
(what you are looking at :).> cd doc
> rsync -avP -e ssh * NAME,uripp@web.sourceforge.net:htdocs/
configure.ac
and change AC_INIT
2nd param to new version number.> svn ci configure.ac
> svn copy -m '[RELEASE SUMMARY]' --username NAME https://uripp.svn.sourceforge.net/svnroot/uripp/trunk https://uripp.svn.sourceforge.net/svnroot/uripp/tags/[NEW VERSION NUMBER]
> svn co --username NAME https://uripp.svn.sourceforge.net/svnroot/uripp/tags/[NEW VERSION NUMBER] uripp-[NEW VERSION NUMBER]
> cd uripp-[NEW VERSION NUMBER]
> autoreconf --install --force
> cd tools
> doxygen uripp.dxy
> cd ../..
> tar cvzf uripp-[NEW VERSION NUMBER].tar.gz uripp-[NEW VERSION NUMBER]
> rsync -avP -e ssh uripp-[NEW VERSION NUMBER].tar.gz NAME@frs.sourceforge.net:uploads/
> cd /tmp
> mkdir tmpsvn
> cd tmpsvn
> mkdir trunk branches tags
> svn import -m 'Initial setup.' --username NAME https://uripp.svn.sourceforge.net/svnroot/uripp
> cd [root dir of files for initial checkin]
> svn co --username NAME https://uripp.svn.sourceforge.net/svnroot/uripp/trunk .
> svn add *
> svn ci -m 'Initial checkin.'