this repo has no description

Merge pull request #25555 from jmid/conf-glpk-freebsd

conf-glpk: add FreeBSD support

Changed files
+5 -1
packages
conf-glpk
conf-glpk.1
+5 -1
packages/conf-glpk/conf-glpk.1/opam
···
license: "GPL-3.0-or-later"
build: [
["sh" "-c" "echo '#include <glpk.h>' > test.c"]
-
["cc" "-E" "test.c"]
+
["cc" "-E" "test.c"] {os = "linux"}
+
["cc" "-E" "-I/usr/local/include" "test.c"] {os = "freebsd"}
+
["cc" "-E" "-I/usr/local/include" "-I/opt/homebrew/include" "test.c"] {os = "macos" & os-distribution = "homebrew"}
]
depexts: [
["libglpk-dev"] {os-family = "debian"}
···
["glpk-devel"] {os-family = "suse" | os-family = "opensuse"}
["glpk"] {os-family = "arch"}
["glpk"] {os = "macos" & os-distribution = "homebrew"}
+
["glpk"] {os = "freebsd"}
]
x-ci-accept-failures: [
"oraclelinux-7" # package not present by default
"oraclelinux-8" # package not present by default
+
"oraclelinux-9" # package not present by default
]
synopsis: "Virtual package for GLPK (GNU Linear Programming Kit)"
description: """