this repo has no description
1opam-version: "2.0" 2maintainer: "7895506+MSoegtropIMC@users.noreply.github.com" 3homepage: "https://www.gnu.org/software/automake" 4authors: ["Jim Meyering" "David J. MacKenzie" "https://git.savannah.gnu.org/cgit/automake.git/tree/THANKS"] 5bug-reports: "https://www.gnu.org/software/automake/manual/html_node/Reporting-Bugs.html" 6license: "GPL-2.0-or-later" 7build: [ 8 ["sh" "-exc" "automake --help"] {os = "win32" & os-distribution != "cygwinports"} 9 [ "automake" "--help" ] {os != "win32" | os-distribution = "cygwinports"} 10] 11depends: "conf-autoconf" 12depexts: [ 13 # The list of supported os-family names can be derived from the opam sources (thanks Enrico) 14 # https://github.com/ocaml/opam/blob/6aefe95e60084e63d01b1c7c028b6b77de1f839f/src/state/opamSysInteract.ml#L84-L123 15 # The package name for many Linux/BSD/macOS/cygwin/msys platforms can be searched here (thanks Théo) 16 # https://repology.org specifically https://repology.org/project/automake/versions 17 # Not listed above but supported by opam are oraclelinix, ol, rhel 18 [ "automake" ] {os-family = "alpine"} 19 [ "automake" ] {os-family = "amzn"} 20 [ "automake" ] {os-family = "arch"} 21 [ "automake" ] {os-family = "archlinux"} 22 [ "automake" ] {os-family = "centos"} 23 # Note: although https://repology.org/project/automake/versions states debian has only automake packages 24 # with explicit versions, there is an "automake" package, at least on Ubuntu 18.04 25 [ "automake" ] {os-family = "debian"} 26 [ "automake" ] {os-family = "ubuntu"} 27 [ "automake" ] {os-family = "fedora"} 28 [ "sys-devel/automake" ] {os-family = "gentoo"} 29 [ "automake" ] {os-family = "homebrew"} 30 [ "automake" ] {os-family = "macports"} 31 [ "automake" ] {os-family = "mageia"} 32 [ "automake" ] {os-family = "suse" | os-family = "opensuse"} 33 [ "devel/automake" ] {os-family = "bsd"} 34 [ "automake" ] {os-family = "nixos"} 35 [ "system:automake" ] {os = "win32" & os-distribution = "cygwinports"} 36 [ "automake" ] {os-distribution = "cygwin"} 37] 38synopsis: "Virtual package relying on GNU automake" 39description: "This package can only install if GNU automake is installed on the system." 40flags: conf