Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
opam-repository/packages/conf-cairo/conf-cairo.1/opam
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
32 lines (32 sloc)
1.22 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
opam-version: "2.0" | |
maintainer: "blue-prawn" | |
homepage: "http://cairographics.org/" | |
authors: ["Keith Packard" "Carl Worth" "Behdad Esfahbod"] | |
license: ["LGPL-2.1-only" "MPL-1.1"] | |
build: [ | |
["pkg-config" "cairo"] {os != "macos"} | |
["sh" "-exc" | |
"export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/; pkg-config --libs cairo"] | |
{os = "macos" & os-distribution = "homebrew"} | |
] | |
depends: ["conf-pkg-config" {build}] | |
depexts: [ | |
["libcairo2-dev"] {os-family = "debian"} | |
["libcairo2-dev"] {os-family = "ubuntu"} | |
["libcairo-devel"] {os-distribution = "mageia"} | |
["cairo" "cairo-devel"] {os-distribution = "centos"} | |
["cairo-devel"] {os-distribution = "fedora"} | |
["cairo-devel"] {os-distribution = "ol"} | |
["cairo-devel"] {os-family = "suse"} | |
["cairo-dev"] {os-family = "alpine"} | |
["graphics/cairo"] {os = "freebsd"} | |
["graphics/cairo"] {os = "openbsd"} | |
["cairo"] {os-family = "arch"} | |
["cairo"] {os = "macos" & os-distribution = "homebrew"} | |
["cairo"] {os = "win32" & os-distribution = "cygwinports"} | |
] | |
synopsis: "Virtual package relying on a Cairo system installation" | |
description: | |
"This package can only install if the cairo lib is installed on the system." | |
bug-reports: "https://github.com/ocaml/opam-repository/issues" | |
flags: conf |