File tree Expand file tree Collapse file tree 3 files changed +147
-0
lines changed
gettext-camomile/gettext-camomile.0.5.0
gettext-stub/gettext-stub.0.5.0 Expand file tree Collapse file tree 3 files changed +147
-0
lines changed Original file line number Diff line number Diff line change
1
+ opam-version: "2.0"
2
+ synopsis: "Internationalization library using camomile (i18n)"
3
+ description: "See gettext package description."
4
+ maintainer: ["Sylvain Le Gall <
[email protected] >"]
5
+ authors: ["Sylvain Le Gall"]
6
+ license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
7
+ homepage: "https://github.com/gildor478/ocaml-gettext"
8
+ doc: "https://gildor478.github.io/ocaml-gettext/"
9
+ bug-reports: "https://github.com/gildor478/ocaml-gettext/issues"
10
+ depends: [
11
+ "dune" {>= "3.17"}
12
+ "gettext" {= version}
13
+ "camomile" {>= "2.0.0"}
14
+ "ounit2" {>= "2.2.7" & with-test}
15
+ "fileutils" {>= "0.6.6" & with-test}
16
+ "odoc" {with-doc}
17
+ ]
18
+ build: [
19
+ ["dune" "subst"] {dev}
20
+ [
21
+ "dune"
22
+ "build"
23
+ "-p"
24
+ name
25
+ "-j"
26
+ jobs
27
+ "--promote-install-files=false"
28
+ "@install"
29
+ "@runtest" {with-test}
30
+ "@doc" {with-doc}
31
+ ]
32
+ ["dune" "install" "-p" name "--create-install-files" name]
33
+ ]
34
+ dev-repo: "git+https://github.com/gildor478/ocaml-gettext.git"
35
+ url {
36
+ src:
37
+ "https://github.com/gildor478/ocaml-gettext/releases/download/v0.5.0/gettext-0.5.0.tbz"
38
+ checksum: [
39
+ "sha256=08dd9df55b2af1838e2312be4be942b4375dbc18c2aed0ca1924488750e34f5d"
40
+ "sha512=4a09eab6d6f0d6ec435ca3d70305e2f97cbcc04bea72f85efcf649a0ead2faa322a0b054eb953b719f6dea98fb08de32fc80b4cf967681465c5a51e335aaf8d4"
41
+ ]
42
+ }
43
+ x-commit-hash: "999e85cadbe675f8e60083241b403438f8d2c869"
Original file line number Diff line number Diff line change
1
+ opam-version: "2.0"
2
+ synopsis: "Internationalization using C gettext library (i18n)"
3
+ description: "See gettext package description."
4
+ maintainer: ["Sylvain Le Gall <
[email protected] >"]
5
+ authors: ["Sylvain Le Gall"]
6
+ license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
7
+ homepage: "https://github.com/gildor478/ocaml-gettext"
8
+ doc: "https://gildor478.github.io/ocaml-gettext/"
9
+ bug-reports: "https://github.com/gildor478/ocaml-gettext/issues"
10
+ depends: [
11
+ "dune" {>= "3.17"}
12
+ "gettext" {= version}
13
+ "dune-configurator" {>= "3.17.0"}
14
+ "ounit2" {>= "2.2.7" & with-test}
15
+ "odoc" {with-doc}
16
+ ]
17
+ build: [
18
+ ["dune" "subst"] {dev}
19
+ [
20
+ "dune"
21
+ "build"
22
+ "-p"
23
+ name
24
+ "-j"
25
+ jobs
26
+ "--promote-install-files=false"
27
+ "@install"
28
+ "@runtest" {with-test}
29
+ "@doc" {with-doc}
30
+ ]
31
+ ["dune" "install" "-p" name "--create-install-files" name]
32
+ ]
33
+ dev-repo: "git+https://github.com/gildor478/ocaml-gettext.git"
34
+ depexts: [
35
+ ["gettext"] {os = "macos" & os-distribution = "homebrew"}
36
+ ["gettext"] {os = "macos" & os-distribution = "macports"}
37
+ ["gettext-devel"] {os = "win32" & os-distribution = "cygwinports"}
38
+ ["gettext-devel"] {os = "win32" & os-distribution = "cygwin"}
39
+ ["gettext-dev"] {os-distribution = "alpine"}
40
+ ["libc6-dev"] {os-family = "debian"}
41
+ ]
42
+ url {
43
+ src:
44
+ "https://github.com/gildor478/ocaml-gettext/releases/download/v0.5.0/gettext-0.5.0.tbz"
45
+ checksum: [
46
+ "sha256=08dd9df55b2af1838e2312be4be942b4375dbc18c2aed0ca1924488750e34f5d"
47
+ "sha512=4a09eab6d6f0d6ec435ca3d70305e2f97cbcc04bea72f85efcf649a0ead2faa322a0b054eb953b719f6dea98fb08de32fc80b4cf967681465c5a51e335aaf8d4"
48
+ ]
49
+ }
50
+ x-commit-hash: "999e85cadbe675f8e60083241b403438f8d2c869"
Original file line number Diff line number Diff line change
1
+ opam-version: "2.0"
2
+ synopsis: "Internationalization library (i18n)"
3
+ description: """
4
+ This library enables string translation in OCaml. The API is based on GNU
5
+ gettext. It comes with a tool to extract strings which need to be translated
6
+ from OCaml source files.
7
+
8
+ This enables OCaml program to output string in the native language of
9
+ the user, if a corresponding translation file of the English strings is
10
+ provided.
11
+
12
+ """
13
+ maintainer: ["Sylvain Le Gall <
[email protected] >"]
14
+ authors: ["Sylvain Le Gall"]
15
+ license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
16
+ homepage: "https://github.com/gildor478/ocaml-gettext"
17
+ doc: "https://gildor478.github.io/ocaml-gettext/"
18
+ bug-reports: "https://github.com/gildor478/ocaml-gettext/issues"
19
+ depends: [
20
+ "dune" {>= "3.17"}
21
+ "dune-site"
22
+ "ocaml" {>= "4.14.0"}
23
+ "cppo" {>= "1.8.0" & build}
24
+ "seq" {>= "base" & with-test}
25
+ "ounit2" {>= "2.2.7" & with-test}
26
+ "fileutils" {>= "0.6.6"}
27
+ "odoc" {with-doc}
28
+ ]
29
+ build: [
30
+ ["dune" "subst"] {dev}
31
+ [
32
+ "dune"
33
+ "build"
34
+ "-p"
35
+ name
36
+ "-j"
37
+ jobs
38
+ "--promote-install-files=false"
39
+ "@install"
40
+ "@runtest" {with-test}
41
+ "@doc" {with-doc}
42
+ ]
43
+ ["dune" "install" "-p" name "--create-install-files" name]
44
+ ]
45
+ dev-repo: "git+https://github.com/gildor478/ocaml-gettext.git"
46
+ url {
47
+ src:
48
+ "https://github.com/gildor478/ocaml-gettext/releases/download/v0.5.0/gettext-0.5.0.tbz"
49
+ checksum: [
50
+ "sha256=08dd9df55b2af1838e2312be4be942b4375dbc18c2aed0ca1924488750e34f5d"
51
+ "sha512=4a09eab6d6f0d6ec435ca3d70305e2f97cbcc04bea72f85efcf649a0ead2faa322a0b054eb953b719f6dea98fb08de32fc80b4cf967681465c5a51e335aaf8d4"
52
+ ]
53
+ }
54
+ x-commit-hash: "999e85cadbe675f8e60083241b403438f8d2c869"
You can’t perform that action at this time.
0 commit comments