forked from ocaml-cross/opam-cross-windows
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+astring-windows.0.8.5 (ocaml-cross#255)
- Loading branch information
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
opam-version: "2.0" | ||
maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" | ||
authors: ["The astring programmers"] | ||
homepage: "https://erratique.ch/software/astring" | ||
doc: "https://erratique.ch/software/astring/doc" | ||
dev-repo: "git+http://erratique.ch/repos/astring.git" | ||
bug-reports: "https://github.com/dbuenzli/astring/issues" | ||
tags: [ "string" "org:erratique" ] | ||
license: "ISC" | ||
depends: [ | ||
"ocaml" {>= "4.05.0"} | ||
"opam-installer" {build} | ||
"ocamlfind" {build} | ||
"ocamlbuild" {build} | ||
"topkg" {build} ] | ||
|
||
build: [[ | ||
"ocaml" "pkg/pkg.ml" "build" | ||
"--pinned" "%{pinned}%" "--toolchain" "windows"]] | ||
install: [["opam-installer" "--prefix=%{prefix}%/windows-sysroot" "astring.install"]] | ||
remove: [["ocamlfind" "-toolchain" "windows" "remove" "astring"]] | ||
|
||
synopsis: """Alternative String module for OCaml""" | ||
description: """\ | ||
|
||
Astring exposes an alternative `String` module for OCaml. This module | ||
tries to balance minimality and expressiveness for basic, index-free, | ||
string processing and provides types and functions for substrings, | ||
string sets and string maps. | ||
|
||
Remaining compatible with the OCaml `String` module is a non-goal. The | ||
`String` module exposed by Astring has exception safe functions, | ||
removes deprecated and rarely used functions, alters some signatures | ||
and names, adds a few missing functions and fully exploits OCaml's | ||
newfound string immutability. | ||
|
||
Astring depends only on the OCaml standard library. It is distributed | ||
under the ISC license. | ||
""" | ||
url { | ||
archive: "https://erratique.ch/software/astring/releases/astring-0.8.5.tbz" | ||
checksum: "e148907c24157d1df43bec89b58b3ec8" | ||
} |