this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #25750 from jmid/conf-snappy-fix

conf-snappy: add include dir on FreeBSD

authored by

Marcello Seri and committed by
GitHub
5ab2317a 784f6c3a

+7 -1
+7 -1
packages/conf-snappy/conf-snappy.1/opam
··· 3 3 homepage: "https://google.github.io/snappy/" 4 4 bug-reports: "https://github.com/ocaml/opam-repository/issues" 5 5 build: [ 6 - ["c++" "test.cpp" "-lsnappy" "-std=c++11"] 6 + ["c++" "test.cpp" "-lsnappy" "-std=c++11"] {os = "linux"} 7 + ["c++" "test.cpp" "-I/usr/local/include" "-L/usr/local/lib" "-lsnappy" "-std=c++11"] {os = "freebsd"} 8 + ["sh" "-c" "c++ test.cpp -I\"$(brew --prefix snappy)/include\" -L\"$(brew --prefix snappy)/lib\" -lsnappy -std=c++11"] {os = "macos" & os-distribution = "homebrew"} 7 9 ] 8 10 depexts: [ 9 11 ["snappy"] {os-distribution = "arch"} ··· 14 16 ["snappy-devel"] {os-distribution = "fedora"} 15 17 ["snappy"] {os-family = "suse" | os-family = "opensuse"} 16 18 ["snappy"] {os = "freebsd"} 19 + ] 20 + x-ci-accept-failures: [ 21 + "oraclelinux-8" 22 + "oraclelinux-9" 17 23 ] 18 24 synopsis: "Virtual package relying on snappy" 19 25 description: