Skip to content

Commit

Permalink
libwebp
Browse files Browse the repository at this point in the history
  • Loading branch information
sasgas committed Feb 15, 2022
1 parent de5e0c1 commit 36afbb7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ RUN yum install -y \
libunwind-devel \
libasan \
libasan-static \
libwebp-devel \
&& yum -y clean all

ADD install_xercesc280.sh /script/
Expand Down Expand Up @@ -83,6 +82,9 @@ RUN /script/install_ffmpeg50.sh
ADD install_golang1177.sh /script/
RUN /script/install_golang1177.sh

ADD install_libwebp122.sh /script/
RUN /script/install_libwebp122.sh

# set timezone
RUN ln -snf /usr/share/zoneinfo/Asia/Seoul /etc/localtime

Expand Down
12 changes: 12 additions & 0 deletions install_libwebp122.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash -e
set -x #echo on
cd ~
wget -nv https://github.com/webmproject/libwebp/archive/refs/tags/v1.2.2.tar.gz --no-check-certificate --content-disposition
tar xvf libwebp-1.2.2.tar.gz
cd libwebp-1.2.2
./autogen.sh
./configure
make install -j$(nproc)
ldconfig
cd ~
rm -rf libwebp-*

0 comments on commit 36afbb7

Please sign in to comment.