-
Notifications
You must be signed in to change notification settings - Fork 46
/
mldonkey.opam
31 lines (31 loc) · 997 Bytes
/
mldonkey.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
opam-version: "2.0"
name: "mldonkey"
synopsis: "Cross-platform multi-network peer-to-peer daemon"
description: """
Supported networks include:
* eDonkey (with Overnet and Kad)
* BitTorrent (with DHT)
* Direct Connect
* HTTP/FTP
MLdonkey core runs as a background daemon and provides several control
interfaces : telnet, web, and binary protocol for third party GUIs."""
maintainer: "root@ygrek.org"
authors: "mldonkey team"
license: "GPL-2.0-only"
homepage: "http://github.com/ygrek/mldonkey"
dev-repo: "git+https://github.com/ygrek/mldonkey.git"
bug-reports: "https://github.com/ygrek/mldonkey/issues"
# mldonkey has many optional components (most of which depend on system libraries),
# this set of dependencies here represents one arbitrary selection
depends: [
"ocaml" {>= "4.03.0"}
"camlp4"
"conf-gd" {optional} # graphical stats
"conf-m4"
"conf-zlib"
"num" # technically optional, enables bittorrent
]
build: [
["./configure" "--enable-debug" "--prefix" prefix]
[make]
]