File tree 1 file changed +19
-2
lines changed
1 file changed +19
-2
lines changed Original file line number Diff line number Diff line change 4
4
# LICENSE: https://github.com/markus-perl/ffmpeg-build-script/blob/master/LICENSE
5
5
6
6
PROGNAME=$( basename " $0 " )
7
- VERSION=1.26
7
+ VERSION=1.27
8
8
CWD=$( pwd)
9
9
PACKAGES=" $CWD /packages"
10
10
WORKSPACE=" $CWD /workspace"
@@ -611,12 +611,29 @@ if $NONFREE_AND_GPL; then
611
611
CONFIGURE_OPTIONS+=(" --enable-libfdk-aac" )
612
612
fi
613
613
614
+ if build " libtiff" ; then
615
+ download " https://download.osgeo.org/libtiff/tiff-4.3.0.tar.gz"
616
+ execute ./configure --prefix=" ${WORKSPACE} " --disable-shared --enable-static
617
+ execute make -j $MJOBS
618
+ execute make install
619
+ build_done " libtiff"
620
+ fi
621
+
622
+ if build " libpng" ; then
623
+ download " https://deac-riga.dl.sourceforge.net/project/libpng/libpng16/1.6.37/libpng-1.6.37.tar.gz"
624
+ execute ./configure --prefix=" ${WORKSPACE} " --disable-shared --enable-static
625
+ execute make -j $MJOBS
626
+ execute make install
627
+ build_done " libpng"
628
+ fi
629
+
614
630
# #
615
631
# # image library
616
632
# #
617
633
618
634
if build " libwebp" ; then
619
- download " https://github.com/webmproject/libwebp/archive/v1.2.0.tar.gz" " libwebp-1.2.0.tar.gz"
635
+ download " https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-1.2.0.tar.gz" " libwebp-1.2.0.tar.gz"
636
+ execute ./configure --prefix=" ${WORKSPACE} " --disable-shared --enable-static
620
637
make_dir build
621
638
cd build || exit
622
639
execute cmake -DCMAKE_INSTALL_PREFIX=" ${WORKSPACE} " -DCMAKE_INSTALL_LIBDIR=lib -DCMAKE_INSTALL_BINDIR=bin -DCMAKE_INSTALL_INCLUDEDIR=include -DENABLE_SHARED=OFF -DENABLE_STATIC=ON ../
You can’t perform that action at this time.
0 commit comments