ports/devel/adaid/files/adaid.gpr
John Marino bbba81c312 Add new port devel/adaid (AdaID)
Supported operations include:
  * Generating random UUIDs
  * Generating name-based UUIDs
  * Restoring UUIDs from a string representation.
  * Converting a UUID to a string

I'd like to thank Anthony Arnold, the author, for re-releasing this useful
library under the 2-clause BSD license.  It was previously only available
under the full GPL.
2016-07-22 17:09:51 +00:00

8 lines
277 B
Text

project AdaID is
for Languages use ("ada");
for Library_Name use "adaid";
for Source_Dirs use ("../../include/adaid");
for Library_Dir use "../../lib/adaid";
for Library_Kind use "dynamic";
for Externally_Built use "true";
end AdaID;