tangled
alpha
login
or
join now
anil.recoil.org
/
aoah-opam-repo
0
fork
atom
The opam repository for my Advent of Agentic Humps 2025
0
fork
atom
overview
issues
pulls
pipelines
+langdetect
anil.recoil.org
3 months ago
ddca06ce
786c401a
0/1
build.yml
running
3mo ago
+35
1 changed file
expand all
collapse all
unified
split
packages
langdetect
langdetect.dev
opam
+35
packages/langdetect/langdetect.dev/opam
···
1
1
+
opam-version: "2.0"
2
2
+
synopsis: "Language detection library using n-gram frequency analysis"
3
3
+
description:
4
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
5
+
maintainer: ["Anil Madhavapeddy <anil@recoil.org>"]
6
6
+
authors: ["Anil Madhavapeddy"]
7
7
+
license: "MIT"
8
8
+
homepage: "https://tangled.org/@anil.recoil.org/ocaml-langdetect"
9
9
+
bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-langdetect/issues"
10
10
+
dev-repo: "git+https://tangled.org/@anil.recoil.org/ocaml-langdetect.git"
11
11
+
depends: [
12
12
+
"dune" {>= "3.20"}
13
13
+
"ocaml" {>= "5.1.0"}
14
14
+
"uutf" {>= "1.0.0"}
15
15
+
"odoc" {with-doc}
16
16
+
"alcotest" {with-test & >= "1.7.0"}
17
17
+
]
18
18
+
build: [
19
19
+
["dune" "subst"] {dev}
20
20
+
[
21
21
+
"dune"
22
22
+
"build"
23
23
+
"-p"
24
24
+
name
25
25
+
"-j"
26
26
+
jobs
27
27
+
"@install"
28
28
+
"@runtest" {with-test}
29
29
+
"@doc" {with-doc}
30
30
+
]
31
31
+
]
32
32
+
url {
33
33
+
src: "git+https://tangled.org/@anil.recoil.org/ocaml-langdetect.git#main"
34
34
+
}
35
35
+
x-maintenance-intent: ["(latest)"]