The opam repository for my Advent of Agentic Humps 2025

+langdetect

+35
+35
packages/langdetect/langdetect.dev/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Language detection library using n-gram frequency analysis" 3 + description: 4 + "An OCaml port of the Cybozu langdetect algorithm. Detects the natural language of text using n-gram frequency profiles. Supports 49 languages including English, Chinese, Japanese, Arabic, and many European languages." 5 + maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 6 + authors: ["Anil Madhavapeddy"] 7 + license: "MIT" 8 + homepage: "https://tangled.org/@anil.recoil.org/ocaml-langdetect" 9 + bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-langdetect/issues" 10 + dev-repo: "git+https://tangled.org/@anil.recoil.org/ocaml-langdetect.git" 11 + depends: [ 12 + "dune" {>= "3.20"} 13 + "ocaml" {>= "5.1.0"} 14 + "uutf" {>= "1.0.0"} 15 + "odoc" {with-doc} 16 + "alcotest" {with-test & >= "1.7.0"} 17 + ] 18 + build: [ 19 + ["dune" "subst"] {dev} 20 + [ 21 + "dune" 22 + "build" 23 + "-p" 24 + name 25 + "-j" 26 + jobs 27 + "@install" 28 + "@runtest" {with-test} 29 + "@doc" {with-doc} 30 + ] 31 + ] 32 + url { 33 + src: "git+https://tangled.org/@anil.recoil.org/ocaml-langdetect.git#main" 34 + } 35 + x-maintenance-intent: ["(latest)"]