geohash_bin.opam 968 B

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