Changeset 513d58a for general/graphlib


Ignore:
Timestamp:
08/07/2017 11:21:41 PM (7 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
f067fa94
Parents:
26bb7e15
Message:

Update to opencv-3.3.0

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@18994 af4574ff-66df-0310-9fd7-8a98e5e911e0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • general/graphlib/opencv.xml

    r26bb7e15 r513d58a  
    99  <!ENTITY opencv-download-http     "&sourceforge-repo2;&cvdir;/opencv-unix/&opencv-version;/opencv-&opencv-version;.zip">
    1010  <!ENTITY opencv-download-ftp      " ">
    11   <!ENTITY opencv-md5sum            "bfc6a261eb069b709bcfe7e363ef5899">
    12   <!ENTITY opencv-size              "78 MB">
    13   <!ENTITY opencv-buildsize         "556 MB">
    14   <!ENTITY opencv-time              "8.1 SBU">
    15 
    16 
    17   <!ENTITY ippicv-version          "20151201">
    18   <!ENTITY ippicv_binaries_commit  "81a676001ca8075ada498583e4166079e5744668">
     11  <!ENTITY opencv-md5sum            "cc586ebe960a7cdd87100e89088abc06">
     12  <!ENTITY opencv-size              "81 MB">
     13  <!ENTITY opencv-buildsize         "851 MB">
     14  <!ENTITY opencv-time              "2.1 SBU (using parallelism=4)">
     15
     16
     17  <!ENTITY ippicv-version          "ippicv_2017u2_lnx_intel64_20170418">
     18  <!ENTITY ippicv_binaries_commit  "a62e20676a60ee0ad6581e217fe7e4bada3b95db">
    1919
    2020  <!ENTITY opencv-contrib-download "https://github.com/opencv/opencv_contrib/archive/&opencv-version;.tar.gz">
     
    8383      <listitem>
    8484        <para>
    85           Optional file (will be downloaded when running cmake if not present):
     85          Optional file (x86_64 only; will be downloaded when running cmake if not present):
    8686          <ulink
    87           url="https://raw.githubusercontent.com/opencv/opencv_3rdparty/&ippicv_binaries_commit;/ippicv/ippicv_linux_&ippicv-version;.tgz"/>
     87          url="https://raw.githubusercontent.com/opencv/opencv_3rdparty/&ippicv_binaries_commit;/ippicv/&ippicv-version;.tgz"/>
    8888        </para>
    8989      </listitem>
     
    164164    </para>
    165165
    166 <screen><userinput>ipp_file=../ippicv_linux_&ippicv-version;.tgz            &amp;&amp;
    167 ipp_hash=$(md5sum $ipp_file | cut -d" " -f1)      &amp;&amp;
    168 ipp_dir=3rdparty/ippicv/downloads/linux-$ipp_hash &amp;&amp;
     166<screen><userinput>ipp_file=&ippicv-version;.tgz &amp;&amp;
     167ipp_hash=$(md5sum ../$ipp_file | cut -d" " -f1) &amp;&amp;
     168ipp_dir=.cache/ippicv                          &amp;&amp;
    169169
    170170mkdir -p $ipp_dir &amp;&amp;
    171 cp $ipp_file $ipp_dir</userinput></screen>
     171cp ../$ipp_file $ipp_dir/$ipp_hash-$ipp_file</userinput></screen>
    172172
    173173    <para>
     
    186186
    187187cmake -DCMAKE_INSTALL_PREFIX=/usr      \
     188      -DCMAKE_BUILD_TYPE=Release       \
     189      -DENABLE_CXX11=ON                \
     190      -DBUILD_PERF_TESTS=OFF           \
    188191      -DWITH_XINE=ON                   \
    189192      -DBUILD_TESTS=OFF                \
    190193      -DENABLE_PRECOMPILED_HEADERS=OFF \
     194      -DCMAKE_SKIP_RPATH=ON            \
     195      -DBUILD_WITH_DEBUG_INFO=OFF      \
    191196      -Wno-dev  ..                     &amp;&amp;
    192197make</userinput></screen>
Note: See TracChangeset for help on using the changeset viewer.