Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions copr_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@ cp patches/* ./chromium
# Patch the spec file to build with the hardening patches
patch -d ./chromium -p1 < hardening.patch

version="127.0.6533.88"

cd chromium
python3 chromium-latest.py --version 127.0.6533.88 --stable --ffmpegclean --ffmpegarm --cleansources
rm chromium-127.0.6533.88.tar.xz
rm -rf ./chromium-127.0.6533.88
python3 chromium-latest.py --version $version --stable --ffmpegclean --ffmpegarm --cleansources
rm chromium-${version}.tar.xz
rm -rf ./chromium-${version}
cd ..

# Move all the source files into the parent directory for the COPR build system to find them
Expand Down