geohash.opam 846 B

12345678910111213141516171819202122232425262728293031323334
  1. # This file is generated by dune, edit dune-project instead
  2. opam-version: "2.0"
  3. version: "0.1"
  4. synopsis: "#🌐 geohash converter 🐫 library"
  5. description: """
  6. Convert WGS84 lat/lon pairs to [Gustavo Niemeyer](http://niemeyer.net/)s
  7. [Geohash](http://en.wikipedia.org/wiki/Geohash) and back."""
  8. maintainer: ["Marcus Rohrmoser <work@mro.name>"]
  9. authors: ["The GeoHash# programmers"]
  10. license: "GPL-3.0-only"
  11. tags: ["Social" "Web" "Geohash" "CGI" "RFC3875"]
  12. homepage: "https://demo.mro.name/geohash.cgi"
  13. bug-reports: "https://codeberg.org/mro/geohash/issues"
  14. depends: [
  15. "dune" {>= "3.0"}
  16. "optint" {>= "0.3"}
  17. "ocaml" {>= "4.08"}
  18. "odoc" {with-doc}
  19. ]
  20. build: [
  21. [
  22. "dune"
  23. "build"
  24. "-p"
  25. name
  26. "-j"
  27. jobs
  28. "@install"
  29. "@runtest" {with-test}
  30. "@doc" {with-doc}
  31. ]
  32. ]
  33. dev-repo: "git+ssh://codeberg.org/mro/geohash.git"