-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
decoyer2
committed
Feb 24, 2023
1 parent
c3f3ba1
commit 60ad559
Showing
4 changed files
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,5 @@ | |
.env | ||
ImageMagick/ | ||
ImageMagick7/ | ||
cpr/ | ||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
libssl-dev libcurl4-openssl-dev cmake debmake devscripts debhelper libssl-dev | ||
libcurl4-openssl-dev libjsoncpp-dev libpng-dev libjpeg-dev libtiff-dev --no-install-recommends | ||
libboost-all-dev libfreetype6-dev fonts-freefont-otf gsfonts | ||
libboost-all-dev libfreetype6-dev fonts-freefont-otf gsfonts wget |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#Warn: This is quick install for local usage | ||
SCRIPTPATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )" | ||
sudo apt-get update -y | ||
sudo apt-get install -y python3.10 python3-pip git-all build-essential pkg-config `cat ${SCRIPTPATH}/dependencies` | ||
git clone https://github.com/ImageMagick/ImageMagick.git "${SCRIPTPATH}/ImageMagick" | ||
cd "${SCRIPTPATH}/ImageMagick" && ./configure CXX=g++ | ||
make | ||
make install | ||
git clone https://github.com/libcpr/cpr.git "${SCRIPTPATH}/cpr" | ||
cd "${SCRIPTPATH}/cpr" && mkdir build && cd build | ||
cmake "${SCRIPTPATH}/cpr" -DCPR_BUILD_TESTS=OFF | ||
sudo make install |