Files
pixiv_downloader/scripts/build_exiv2.sh
2023-02-05 00:43:49 +00:00

7 lines
341 B
Bash
Executable File

export PREFIX=`pwd`/clib
mkdir -p cbuild && cd cbuild || exit 1
git clone --depth 1 'https://github.com/Exiv2/exiv2' && cd exiv2 || exit 1
mkdir -p build && cd build || exit 1
cmake -DCMAKE_BUILD_TYPE=Release "-DCMAKE_INSTALL_PREFIX=$PREFIX" -DEXIV2_ENABLE_BROTLI=OFF -DEXIV2_ENABLE_INIH=OFF ../ || exit 1
make -j8 && make install || exit 1