simple-learning

Simple learning web program
git clone git://git.laack.co/simple-learning.git
Log | Files | Refs | README | LICENSE

conf-libssl.4.pkg (1419B)


      1 (version 4)
      2 
      3 (install
      4  (all_platforms
      5   (withenv
      6    ((= HOMEBREW_NO_AUTO_UPDATE 1))
      7    (when
      8     (= %{os_distribution} homebrew)
      9     (run sh -ex ./homebrew.sh install %{lib})))))
     10 
     11 (build
     12  (all_platforms
     13   ((action
     14     (withenv
     15      ((= HOMEBREW_NO_AUTO_UPDATE 1))
     16      (progn
     17       (when
     18        (<> %{os_distribution} homebrew)
     19        (run pkg-config --print-errors --exists openssl))
     20       (when (= %{os_distribution} homebrew) (run sh -ex ./homebrew.sh check))))))))
     21 
     22 (depends
     23  (all_platforms (conf-pkg-config)))
     24 
     25 (depexts
     26  ((libssl-dev)
     27   (= %{os_family} debian))
     28  ((libssl-dev)
     29   (= %{os_family} ubuntu))
     30  ((openssl-devel)
     31   (= %{os_distribution} centos))
     32  ((openssl-devel)
     33   (= %{os_distribution} ol))
     34  ((openssl-devel)
     35   (= %{os_family} fedora))
     36  ((libopenssl-devel)
     37   (or_absorb_undefined_var
     38    (= %{os_family} suse)
     39    (= %{os_family} opensuse)))
     40  ((openssl-dev)
     41   (= %{os_family} alpine))
     42  ((openssl)
     43   (= %{os_family} arch))
     44  ((openssl)
     45   (= %{os_distribution} homebrew))
     46  ((openssl)
     47   (= %{os_distribution} macports))
     48  ((openssl)
     49   (= %{os_distribution} nixos))
     50  ((openssl)
     51   (and_absorb_undefined_var
     52    (= %{os} win32)
     53    (= %{os_distribution} cygwinports))))
     54 
     55 (extra_sources
     56  (homebrew.sh
     57   (fetch
     58    (url
     59     https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/conf-libssl/homebrew.sh.4)
     60    (checksum
     61     sha256=c6e132e784f0d3250b434a91ad806416ad6c30e25465bd4e37df946a33bfbad2))))