2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-04 15:02:27 +00:00
repo/extra/libjpeg-turbo/build

14 lines
258 B
Plaintext
Raw Normal View History

2019-07-18 08:07:59 +00:00
#!/bin/sh -e
2021-07-06 08:06:08 +00:00
patch -p1 < no-docs.patch
2019-11-13 02:36:33 +00:00
cmake -B build \
2019-07-18 08:07:59 +00:00
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
-DCMAKE_SHARED_LIBS=True \
-DCMAKE_BUILD_TYPE=Release \
-DWITH_JPEG8=1
2019-11-13 02:36:33 +00:00
cmake --build build
cmake --install build