mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-01 03:12:29 +00:00
14 lines
256 B
Bash
Executable File
14 lines
256 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
cd $(dirname $0)/..
|
|
unzip qpdf-external-libs-src.zip
|
|
tar xzf external-libs-src/jpegsrc*
|
|
cd jpeg-*
|
|
./configure
|
|
make -k
|
|
sudo make install
|
|
cd ..
|
|
./configure --enable-werror --enable-show-failed-test-output
|
|
make -j$(nproc) -k
|
|
make -k check
|