123456789101112131415161718192021222324252627282930313233343536373839404142 |
- (lang dune 3.0)
- ; https://dune.readthedocs.io/en/latest/opam.html#generating-opam-files
- (name geohash)
- (version 0.1)
- (subst disabled)
- (implicit_transitive_deps true)
- (generate_opam_files true)
- (formatting (enabled_for dune))
- (license GPL-3.0-only)
- (maintainers "Marcus Rohrmoser <work@mro.name>")
- (authors "The GeoHash# programmers")
- (homepage https://demo.mro.name/geohash.cgi)
- (bug_reports https://codeberg.org/mro/geohash/issues)
- (source (uri git+ssh://codeberg.org/mro/geohash.git))
- (package
- (name geohash)
- (synopsis "#🌐 geohash converter 🐫 library")
- (description "Convert WGS84 lat/lon pairs to [Gustavo Niemeyer](http://niemeyer.net/)s
- [Geohash](http://en.wikipedia.org/wiki/Geohash) and back.")
- (tags (Social Web Geohash CGI RFC3875))
- (depends
- (optint (>= 0.3))
- (ocaml (>= 4.08))
- ))
- (package
- (name geohash_bin)
- (synopsis "#🌐 geohash converter 🐫. Commandline and CGI. Zero-config, single-file")
- (description "Convert WGS84 lat/lon pairs to [Gustavo Niemeyer](http://niemeyer.net/)s
- [Geohash](http://en.wikipedia.org/wiki/Geohash) and back. Web and commandline, 🐪,
- statically linked, single-file, zero-config.")
- (tags (Social Web Geohash CGI RFC3875))
- (depends
- (tyre (>= 0.5))
- crunch
- ))
|