Changeset 1112:8138afeb88c2


Ignore:
Timestamp:
09/27/23 14:26:00 (7 months ago)
Author:
István Váradi <ivaradi@…>
Branch:
python3
Phase:
public
Message:

The CEF Python building script can use a local copy of the CEF binary

File:
1 edited

Legend:

Unmodified
Added
Removed
  • misc/build-cefpython.sh

    r1092 r1112  
    2525cd "${builddir}"
    2626rm  -rf "${CEF_NAME}"
    27 wget -O - "https://cef-builds.spotifycdn.com/${CEF_NAME}.tar.bz2" | bzip2 -dc | tar xf -
     27if test -f "${HOME}/sources/mlx/${CEF_NAME}.tar.bz2"; then
     28    tar xf "${HOME}/sources/mlx/${CEF_NAME}.tar.bz2"
     29else
     30    wget -O - "https://cef-builds.spotifycdn.com/${CEF_NAME}.tar.bz2" | bzip2 -dc | tar xf -
     31fi
    2832
    2933cd "${CEF_NAME}"
Note: See TracChangeset for help on using the changeset viewer.