geohash_bin.opam 946 B

123456789101112131415161718192021222324252627282930313233343536
  1. # This file is generated by dune, edit dune-project instead
  2. opam-version: "2.0"
  3. version: "0.1"
  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. "odoc" {with-doc}
  21. ]
  22. build: [
  23. [
  24. "dune"
  25. "build"
  26. "-p"
  27. name
  28. "-j"
  29. jobs
  30. "@install"
  31. "@runtest" {with-test}
  32. "@doc" {with-doc}
  33. ]
  34. ]
  35. dev-repo: "git+ssh://codeberg.org/mro/geohash.git"