diff options
author | Cem Keylan <cem@ckyln.com> | 2021-05-17 10:14:13 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-05-17 10:14:13 +0300 |
commit | 888670302f0ceb164051e74fe677faf9177ae07a (patch) | |
tree | 8d698bd40f1df50e1069a1d63ce47a192cc572ae /extra/poppler/build | |
parent | 013482352c7cf31123207ff2513f700af0c995e7 (diff) | |
download | repository-888670302f0ceb164051e74fe677faf9177ae07a.tar.gz |
poppler: add new package at 21.05.0
Diffstat (limited to 'extra/poppler/build')
-rwxr-xr-x | extra/poppler/build | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/extra/poppler/build b/extra/poppler/build new file mode 100755 index 00000000..e6f4d55b --- /dev/null +++ b/extra/poppler/build @@ -0,0 +1,13 @@ +#!/bin/sh -e + +export DESTDIR="$1" + +cmake -B build \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=/usr/lib \ + -DENABLE_CPP=ON \ + -DENABLE_QT5=OFF \ + -DWITH_NSS3=OFF + +cmake --build build +cmake --install build |