mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-05 04:47:53 +00:00
4628461383
Use free Azure Pipelines to do Linux, Windows, and Mac build and test and to generate Windows binary distributions.
14 lines
295 B
Bash
Executable File
14 lines
295 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
curl -L https://www.ijg.org/files/jpegsrc.v9c.tar.gz -o jpegsrc.v9c.tar.gz
|
|
tar xzf jpegsrc.v9c.tar.gz
|
|
cd jpeg-9c
|
|
./configure
|
|
make
|
|
sudo make install
|
|
cd ..
|
|
unzip distfiles/distfiles.zip
|
|
./configure --enable-werror --enable-show-failed-test-output
|
|
make -j$(nproc)
|
|
make -k check
|