repo/extra/libjpeg-turbo/build

14 lines
252 B
Plaintext
Raw Normal View History

2019-07-18 02:07:59 -06:00
#!/bin/sh -e
2019-11-12 19:36:33 -07:00
export DESTDIR="$1"
cmake -B build \
2019-07-18 02:07:59 -06:00
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
-DCMAKE_SHARED_LIBS=True \
-DCMAKE_BUILD_TYPE=Release \
-DWITH_JPEG8=1
2019-11-12 19:36:33 -07:00
cmake --build build
cmake --install build