unison.opam (1100B)
1 opam-version: "2.0" 2 maintainer: "unison-hackers@lists.seas.upenn.edu" 3 authors: [ 4 "Trevor Jim" 5 "Benjamin C. Pierce" 6 "Jérôme Vouillon" 7 ] 8 license: "GPL-3.0-or-later" 9 homepage: "https://www.cis.upenn.edu/~bcpierce/unison/" 10 bug-reports: "https://github.com/bcpierce00/unison/issues" 11 dev-repo: "git://github.com/bcpierce00/unison.git" 12 build: [ 13 [make "NATIVE=%{ocaml:native}%" "-j" jobs] {!host-system-msvc:installed} 14 ["nmake" "NATIVE=%{ocaml:native}%"] {host-system-msvc:installed} 15 ] 16 install: [ 17 [make "install" "PREFIX=%{prefix}%"] {os != "win32"} 18 ["cmd" "/c" "copy" "src\\unison*.exe" "%{prefix}%\\bin"] {os = "win32"} 19 ] 20 depends: [ 21 "ocaml" {>= "4.08"} 22 ] 23 depopts: [ 24 "lablgtk3" {>= "3.1.0"} 25 "ocamlfind" 26 ] 27 synopsis: "File-synchronization tool for Unix and Windows" 28 description: """ 29 Unison is a file-synchronization tool for Unix and Windows. It allows 30 two replicas of a collection of files and directories to be stored on 31 different hosts (or different disks on the same host), modified 32 separately, and then brought up to date by propagating the changes in 33 each replica to the other."""