-
Notifications
You must be signed in to change notification settings - Fork 237
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
117 additions
and
25 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
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,39 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
version: "dev" | ||
synopsis: "File-synchronization tool for Unix and Windows" | ||
description: """ | ||
This optional add-on for unison monitors file system changes | ||
on all given (relative to root) paths. | ||
|
||
Unison is a file-synchronization tool for Unix and Windows. | ||
It allows two replicas of a collection of files and directories | ||
to be stored on different hosts (or different disks on the same host), | ||
modified separately, and then brought up to date by propagating | ||
the changes in each replica to the other. | ||
""" | ||
maintainer: ["juergen@hoetzel.info"] | ||
authors: ["Trevor Jim" "Benjamin C. Pierce" "Jérôme Vouillon"] | ||
license: "GPL-3.0-or-later" | ||
homepage: "https://www.cis.upenn.edu/~bcpierce/unison/" | ||
doc: "https://github.com/bcpierce00/unison/wiki" | ||
bug-reports: "https://github.com/bcpierce00/unison/issues" | ||
depends: [ | ||
"ocaml" {build & >= "4.08"} | ||
"dune" {build & >= "2.3"} | ||
] | ||
build: [ | ||
["dune" "subst"] {pinned} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/bcpierce00/unison.git" |
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,39 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
version: "dev" | ||
synopsis: "File-synchronization tool for Unix and Windows" | ||
description: """ | ||
Graphical user interface for Unison. | ||
|
||
Unison is a file-synchronization tool for Unix and Windows. | ||
It allows two replicas of a collection of files and directories | ||
to be stored on different hosts (or different disks on the same host), | ||
modified separately, and then brought up to date by propagating | ||
the changes in each replica to the other. | ||
""" | ||
maintainer: ["juergen@hoetzel.info"] | ||
authors: ["Trevor Jim" "Benjamin C. Pierce" "Jérôme Vouillon"] | ||
license: "GPL-3.0-or-later" | ||
homepage: "https://www.cis.upenn.edu/~bcpierce/unison/" | ||
doc: "https://github.com/bcpierce00/unison/wiki" | ||
bug-reports: "https://github.com/bcpierce00/unison/issues" | ||
depends: [ | ||
"ocaml" {build & >= "4.08"} | ||
"dune" {build & >= "2.3"} | ||
"lablgtk3" {build & >= "3.1.0"} | ||
] | ||
build: [ | ||
["dune" "subst"] {pinned} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/bcpierce00/unison.git" |
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 |
---|---|---|
@@ -1,25 +1,38 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
maintainer: "juergen@hoetzel.info" | ||
authors: [ | ||
"Trevor Jim" | ||
"Benjamin C. Pierce" | ||
"Jérôme Vouillon" | ||
] | ||
version: "dev" | ||
synopsis: "File-synchronization tool for Unix and Windows" | ||
description: """ | ||
Text based user interface for Unison. | ||
|
||
Unison is a file-synchronization tool for Unix and Windows. | ||
It allows two replicas of a collection of files and directories | ||
to be stored on different hosts (or different disks on the same host), | ||
modified separately, and then brought up to date by propagating | ||
the changes in each replica to the other. | ||
""" | ||
maintainer: ["juergen@hoetzel.info"] | ||
authors: ["Trevor Jim" "Benjamin C. Pierce" "Jérôme Vouillon"] | ||
license: "GPL-3.0-or-later" | ||
homepage: "https://www.cis.upenn.edu/~bcpierce/unison/" | ||
doc: "https://github.com/bcpierce00/unison/wiki" | ||
bug-reports: "https://github.com/bcpierce00/unison/issues" | ||
dev-repo: "git://github.com/bcpierce00/unison.git" | ||
build: ["dune" "build" "-p" name "-j" jobs] | ||
depends: [ | ||
"ocaml" {build & >= "4.08"} | ||
"ocamlfind" {build} | ||
"dune" {build & >= "2.3"} | ||
"lablgtk3" {build & >= "3.1.0"} | ||
] | ||
synopsis: "File-synchronization tool for Unix and Windows" | ||
description: """ | ||
Unison is a file-synchronization tool for Unix and Windows. It allows | ||
two replicas of a collection of files and directories to be stored on | ||
different hosts (or different disks on the same host), modified | ||
separately, and then brought up to date by propagating the changes in | ||
each replica to the other.""" | ||
build: [ | ||
["dune" "subst"] {pinned} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/bcpierce00/unison.git" |