this repo has no description
1opam-version: "2.0"
2maintainer: "michipili@gmail.com"
3homepage: "http://www.crufty.net/help/sjg/bmake.htm"
4authors: "sjg@crufty.net"
5bug-reports: "mailto:sjg@crufty.net"
6license: "BSD-3-Clause"
7build: [
8 ["sh" "./detect_program.sh" "./conf-bmake.config" "bmake"] {!(os = "freebsd" | os = "openbsd" | os = "netbsd")}
9 ["sh" "./detect_program.sh" "./conf-bmake.config" "make"] {(os = "freebsd" | os = "openbsd" | os = "netbsd")}
10]
11depexts: [
12 ["bmake"] {os-family = "debian"}
13 ["bmake"] {os-family = "ubuntu"}
14 ["bmake"] {os-distribution = "centos"}
15 ["bmake"] {os-distribution = "fedora"}
16 ["bmake"] {os-distribution = "arch"}
17 ["sys-devel/bmake"] {os-distribution = "gentoo"}
18 ["bmake"] {os-distribution = "nixos"}
19 ["bmake"] {os = "macos" & os-distribution = "homebrew"}
20 ["bmake"] {os = "macos" & os-distribution = "macports"}
21 ["bmake"] {os-distribution = "alpine"}
22 ["bmake"] {os-distribution = "ol"}
23 ["bmake"] {os-distribution = "rhel"}
24]
25synopsis: "Virtual package relying on a BSD Make compatible program"
26description: """
27This package can only install if a BSD Make compatible program is
28available on the system."""
29flags: conf
30extra-source "detect_program.sh" {
31 src:
32 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/conf-bmake/detect_program.sh"
33 checksum: [
34 "sha256=0c8abd8b1c2631b983946fd087c939b4bba492df9728c9c4adc1a7f87157ca6b"
35 "md5=3f0146fa5b2daf78c62908b0a587f094"
36 ]
37}