Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/certik/uuid
UUID code from util-linux (BSD licensed)
https://github.com/certik/uuid
Last synced: 7 days ago
JSON representation
UUID code from util-linux (BSD licensed)
- Host: GitHub
- URL: https://github.com/certik/uuid
- Owner: certik
- License: other
- Created: 2011-05-06T18:12:01.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2015-03-20T11:01:30.000Z (over 9 years ago)
- Last Synced: 2024-11-01T07:41:31.305Z (14 days ago)
- Language: C
- Homepage: http://en.wikipedia.org/wiki/Util-linux
- Size: 604 KB
- Stars: 23
- Watchers: 6
- Forks: 18
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: COPYING.libuuid
Awesome Lists containing this project
README
UUID
====This library is copied from the
`util-linux `_ package.It was written by Theodore Ts'o and it is BSD licensed.
This git repository adds a CMake buildsystem and an spkg-install file. It
leaves the original autotools Makefile.am/in files intact, so that once can
debug the CMake build system if it is doing something different (link options,
etc.).Motivation
----------The motivation for this repository is so that one can easily install just the ``uuid`` library, needed by some other packages (like `zeromq `_), without the need to install the whole ``util-linux`` package.
Install
-------Just like any other cmake based project::
cmake -DCMAKE_INSTALL_PREFIX="somewhere" .
make
make installLook into the ``spkg-install`` file for an example.