1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
# libvc
[vCard](https://tools.ietf.org/html/rfc2426) (the Electronic Business
Card) library. Fork of libvc, part of the
[Rolo](http://rolo.sourceforge.net/) project, which seems abandoned.
Original read me file provided in README.
## Compilation
autoreconf -f -i
./configure
make
make install
## Simple unit tests
make check
The unit tests in file [run-tests](test/run-tests) need
[shUnit2](https://github.com/kward/shunit2).
## Development
Note: if making changes, use
git update-index --assume-unchanged INSTALL
to avoid automatic changes to INSTALL making it into the git history.
|