-
Notifications
You must be signed in to change notification settings - Fork 13
/
build-ffmpeg
executable file
·1537 lines (1045 loc) · 40.5 KB
/
build-ffmpeg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/bin/bash
#
# This is a (sometimes significantly) modified version of the excellent build script from https://github.com/markus-perl/ffmpeg-build-script designed for our needs in the Homebridge project.
#
# HOMEPAGE: https://github.com/markus-perl/ffmpeg-build-script
# LICENSE: https://github.com/markus-perl/ffmpeg-build-script/blob/master/LICENSE
#
PROGNAME=$(basename "$0")
FFMPEG_VERSION="7.0.2"
SCRIPT_VERSION="1.46-homebridge.2.1.5"
CWD=$(pwd)
PACKAGES="${CWD}/packages"
WORKSPACE="${CWD}/workspace"
CFLAGS="-I${WORKSPACE}/include"
LDFLAGS="-L${WORKSPACE}/lib"
LDEXEFLAGS=""
EXTRALIBS="-ldl -lpthread -lm -lz"
CONFIGURE_OPTIONS=()
NONFREE_AND_GPL=false
LATEST=false
MANPAGES=1
CURRENT_PACKAGE_VERSION=0
AUTOINSTALL="no"
SKIPINSTALL="yes"
# Are we targetting Apple Silicon?
isAppleSilicon() {
if [[ "${TARGET_ARCH}" == "arm64" && "${TARGET_OS}" == "darwin" ]]; then
return 0
fi
return 1
}
# Are we targetting Linux?
isLinux() {
if [[ "${TARGET_OS}" == "alpine" || "${TARGET_OS}" == "debian" || "${TARGET_OS}" == "raspbian" || "${OSTYPE}" == "linux-gnu" ]]; then
return 0
fi
return 1
}
if [[ "${OSTYPE}" == "darwin"* ]]; then
# We skip the rav1e encoder build on macOS.
SKIPRAV1E="yes"
TARGET_OS="darwin"
elif [ -z "${TARGET_OS}" ]; then
TARGET_OS=$(uname -s)
fi
if [ -z "${TARGET_ARCH}" ]; then
TARGET_ARCH=$(uname -m)
fi
# Check for Apple Silicon
if isAppleSilicon; then
# If arm64 AND darwin (macOS)
export ARCH=arm64
export MACOSX_DEPLOYMENT_TARGET=11.0
fi
# Speed up the process
# Env Var NUMJOBS overrides automatic detection
if [[ -n "${NUMJOBS}" ]]; then
MJOBS="${NUMJOBS}"
elif command -v nproc &> /dev/null; then
MJOBS=$(nproc)
elif [[ -f /proc/cpuinfo ]]; then
MJOBS=$(grep -c processor /proc/cpuinfo)
elif [[ "${TARGET_OS}" == "darwin" ]]; then
MJOBS=$(sysctl -n machdep.cpu.thread_count)
CONFIGURE_OPTIONS+=("--enable-videotoolbox")
MACOS_LIBTOOL="$(which libtool)" # gnu libtool is installed in this script and need to avoid name conflict
else
MJOBS=4
fi
make_dir() {
remove_dir "$1"
if ! mkdir "$1"; then
printf "\n Failed to create dir %s" "$1"
exit 1
fi
}
remove_dir() {
if [ -d "$1" ]; then
rm -r "$1"
fi
}
clone() {
# clone url [dirname]
CLONE_PATH="${PACKAGES}"
CLONE_NAME="${2:-"${1##*/}"}"
TARGETDIR="${3:-"${CLONE_NAME%.*}"}"
if [ ! -d "${CLONE_PATH}/${TARGETDIR}" ]; then
echo "Cloning from $1 as ${TARGETDIR}"
git clone -q "$1" "${CLONE_PATH}/${TARGETDIR}"
EXITCODE=$?
if [ ${EXITCODE} -ne 0 ]; then
echo ""
echo "Failed to download $1. Exitcode ${EXITCODE}. Retrying in 10 seconds"
sleep 10
git clone -q "$1" "${CLONE_PATH}/${TARGETDIR}"
fi
EXITCODE=$?
if [ ${EXITCODE} -ne 0 ]; then
echo ""
echo "Failed to download $1. Exitcode ${EXITCODE}"
exit 1
fi
echo "... Done"
else
echo "${CLONE_NAME} has already downloaded."
fi
cd "${CLONE_PATH}/${TARGETDIR}" || (echo "Error has occurred." ; exit 1)
}
download() {
# download url [filename[dirname]]
DOWNLOAD_PATH="${PACKAGES}"
DOWNLOAD_FILE="${2:-"${1##*/}"}"
if [[ "${DOWNLOAD_FILE}" =~ tar. ]]; then
TARGETDIR="${DOWNLOAD_FILE%.*}"
TARGETDIR="${3:-"${TARGETDIR%.*}"}"
else
TARGETDIR="${3:-"${DOWNLOAD_FILE%.*}"}"
fi
if [ ! -f "${DOWNLOAD_PATH}/${DOWNLOAD_FILE}" ]; then
echo "Downloading $1 as ${DOWNLOAD_FILE}"
curl -L --silent -o "${DOWNLOAD_PATH}/${DOWNLOAD_FILE}" "$1"
EXITCODE=$?
if [ ${EXITCODE} -ne 0 ]; then
echo ""
echo "Failed to download $1. Exitcode ${EXITCODE}. Retrying in 10 seconds"
sleep 10
curl -L --silent -o "${DOWNLOAD_PATH}/${DOWNLOAD_FILE}" "$1"
fi
EXITCODE=$?
if [ ${EXITCODE} -ne 0 ]; then
echo ""
echo "Failed to download $1. Exitcode ${EXITCODE}"
exit 1
fi
echo "... Done"
else
echo "${DOWNLOAD_FILE} has already downloaded."
fi
make_dir "${DOWNLOAD_PATH}/${TARGETDIR}"
if [[ "${DOWNLOAD_FILE}" == *"patch"* ]]; then
return
fi
if [ -n "$3" ]; then
if ! tar -xvf "${DOWNLOAD_PATH}/${DOWNLOAD_FILE}" -C "${DOWNLOAD_PATH}/${TARGETDIR}" 2>/dev/null >/dev/null; then
echo "Failed to extract ${DOWNLOAD_FILE}"
exit 1
fi
else
if ! tar -xvf "${DOWNLOAD_PATH}/${DOWNLOAD_FILE}" -C "${DOWNLOAD_PATH}/${TARGETDIR}" --strip-components 1 2>/dev/null >/dev/null; then
echo "Failed to extract ${DOWNLOAD_FILE}"
exit 1
fi
fi
echo "Extracted ${DOWNLOAD_FILE}"
cd "${DOWNLOAD_PATH}/${TARGETDIR}" || (echo "Error has occurred."; exit 1)
}
execute() {
echo "$ $*"
OUTPUT=$("$@" 2>&1)
# shellcheck disable=SC2181
if [ $? -ne 0 ]; then
echo "${OUTPUT}"
echo ""
echo "Failed to Execute $*" >&2
exit 1
fi
}
build() {
echo ""
echo "building $1 - version $2"
echo "======================="
CURRENT_PACKAGE_VERSION=$2
if [ -f "${PACKAGES}/$1.done" ]; then
if grep -Fx "$2" "${PACKAGES}/$1.done" >/dev/null; then
echo "$1 version $2 already built. Remove ${PACKAGES}/$1.done lockfile to rebuild it."
return 1
elif ${LATEST}; then
echo "$1 is outdated and will be rebuilt with latest version $2"
return 0
else
echo "$1 is outdated, but will not be rebuilt. Pass in --latest to rebuild it or remove ${PACKAGES}/$1.done lockfile."
return 1
fi
fi
return 0
}
command_exists() {
if ! [[ -x $(command -v "$1") ]]; then
return 1
fi
return 0
}
library_exists() {
if ! [[ -x $(pkg-config --exists --print-errors "$1" 2>&1 >/dev/null) ]]; then
return 1
fi
return 0
}
build_done() {
echo "$2" >"${PACKAGES}/$1.done"
}
verify_binary_type() {
if ! command_exists "file"; then
return
fi
BINARY_TYPE=$(file "${WORKSPACE}/bin/ffmpeg" | sed -n 's/^.*\:\ \(.*$\)/\1/p')
echo ""
case ${BINARY_TYPE} in
"Mach-O 64-bit executable arm64")
echo "Successfully built Apple Silicon (M1) for ${OSTYPE}: ${BINARY_TYPE}"
;;
*)
echo "Successfully built binary for ${OSTYPE}: ${BINARY_TYPE}"
;;
esac
}
cleanup() {
remove_dir "${PACKAGES}"
remove_dir "${WORKSPACE}"
echo "Cleanup done."
echo ""
}
usage() {
echo "Usage: ${PROGNAME} [OPTIONS]"
echo "Options:"
echo " -h, --help Display usage information"
echo " --version Display version information"
echo " -b, --build Starts the build process"
echo " --enable-gpl-and-non-free Enable GPL and non-free codecs - https://ffmpeg.org/legal.html"
echo " -c, --cleanup Remove all working dirs"
echo " --latest Build latest version of dependencies if newer available"
echo " --small Prioritize small size over speed and usability; don't build manpages"
echo " --full-static Build a full static FFmpeg binary (eg. glibc, pthreads etc...) **only Linux**"
echo " Note: Because of the NSS (Name Service Switch), glibc does not recommend static links."
echo ""
}
echo "ffmpeg-build-script v${SCRIPT_VERSION}"
echo "========================="
echo ""
echo "Building for ${OSTYPE} (${TARGET_OS}-${TARGET_ARCH})"
echo ""
while (($# > 0)); do
case $1 in
-h | --help)
usage
exit 0
;;
--version)
echo "${SCRIPT_VERSION}"
exit 0
;;
-*)
if [[ "$1" == "--build" || "$1" =~ '-b' ]]; then
bflag='-b'
fi
if [[ "$1" == "--enable-gpl-and-non-free" ]]; then
CONFIGURE_OPTIONS+=("--enable-nonfree" "--enable-gpl")
NONFREE_AND_GPL=true
fi
if [[ "$1" == "--cleanup" || "$1" =~ '-c' && ! "$1" =~ '--' ]]; then
cflag='-c'
cleanup
fi
if [[ "$1" == "--full-static" ]]; then
if [[ "${TARGET_OS}" == "darwin" ]]; then
echo "Error: A full static binary can only be build on Linux."
exit 1
fi
LDEXEFLAGS="-static"
fi
if [[ "$1" == "--latest" ]]; then
LATEST=true
fi
if [[ "$1" == "--small" ]]; then
CONFIGURE_OPTIONS+=("--enable-small" "--disable-doc")
MANPAGES=0
else
CONFIGURE_OPTIONS+=("--enable-hardcoded-tables")
fi
shift
;;
*)
usage
exit 1
;;
esac
done
if [ -z "$bflag" ]; then
if [ -z "$cflag" ]; then
usage
exit 1
fi
exit 0
fi
echo "Using ${MJOBS} make jobs simultaneously."
if ${NONFREE_AND_GPL}; then
echo "With GPL and non-free codecs"
fi
if [ -n "${LDEXEFLAGS}" ]; then
echo "Start the build in full static mode."
fi
mkdir -p "${PACKAGES}"
mkdir -p "${WORKSPACE}"
export PATH="${WORKSPACE}/bin:${PATH}"
PKG_CONFIG_PATH=""
if [[ "${TARGET_OS}" == "raspbian" ]]; then
PKG_CONFIG_PATH+="${WORKSPACE}/opt/vc/lib/pkgconfig:"
fi
PKG_CONFIG_PATH+="${WORKSPACE}/lib/pkgconfig:/usr/local/lib/${TARGET_ARCH}-${OSTYPE}/pkgconfig:/usr/local/lib/pkgconfig"
PKG_CONFIG_PATH+=":/usr/local/share/pkgconfig:/usr/lib/${TARGET_ARCH}-${OSTYPE}/pkgconfig:/usr/lib/pkgconfig:/usr/share/pkgconfig:/usr/lib64/pkgconfig"
export PKG_CONFIG_PATH
echo "Package config path: ${PKG_CONFIG_PATH}"
if ! command_exists "make"; then
echo "make not installed."
exit 1
fi
if ! command_exists "g++"; then
echo "g++ not installed."
exit 1
fi
if ! command_exists "curl"; then
echo "curl not installed."
exit 1
fi
if ! command_exists "cargo"; then
echo "cargo not installed. rav1e encoder will not be available."
fi
if ! command_exists "python3"; then
echo "python3 command not found. Lv2 filter and dav1d decoder will not be available."
fi
##
## build tools
##
# Check for Raspberry Pi
if [[ "${TARGET_OS}" == "raspbian" ]]; then
echo "Installing Raspberry Pi-specific development tools and configuring for Raspberry Pi-specific codecs."
if build "rpi-userland" "latest"; then
clone "https://github.com/raspberrypi/userland.git" "rpi-userland"
# Native compile on the Raspberry Pi
mkdir -p build/raspberry
cd build/raspberry
# VMCS_INSTALL_PREFIX="${WORKSPACE}"
execute cmake -DLIBRARY_TYPE=STATIC -DENABLE_SHARED=OFF -DBUILD_SHARED_LIBS=OFF -DCMAKE_BUILD_TYPE=Release -DARM64=off -DCMAKE_TOOLCHAIN_FILE=../../makefiles/cmake/toolchains/arm-linux-gnueabihf.cmake ../..
execute make -j ${MJOBS}
execute make install DESTDIR="${WORKSPACE}"
build_done "rpi-userland" "latest"
fi
CFLAGS+=" -I${WORKSPACE}/opt/vc/include/IL"
LDFLAGS+=" -L${WORKSPACE}/opt/vc/lib"
# CONFIGURE_OPTIONS+=("--enable-mmal" "--enable-omx-rpi")
CONFIGURE_OPTIONS+=("--enable-omx-rpi")
fi
if ! isLinux; then
if build "giflib" "5.2.1"; then
download "https://downloads.sourceforge.net/project/giflib/giflib-5.2.1.tar.gz"
if [[ "${TARGET_OS}" == "darwin" ]]; then
download "https://sourceforge.net/p/giflib/bugs/_discuss/thread/4e811ad29b/c323/attachment/Makefile.patch"
execute patch -p0 --forward "${PACKAGES}/giflib-5.2.1/Makefile" "${PACKAGES}/Makefile.patch" || true
fi
#multicore build disabled for this library
execute make
execute make PREFIX="${WORKSPACE}" install
build_done "giflib" "5.2.1"
fi
if build "pkg-config" "0.29.2"; then
download "https://pkgconfig.freedesktop.org/releases/pkg-config-0.29.2.tar.gz"
execute ./configure CFLAGS="-g -O2 -Wno-int-conversion" --silent --prefix="${WORKSPACE}" --with-pc-path="${WORKSPACE}/lib/pkgconfig:/usr/lib/${TARGET_ARCH}-${OSTYPE}/pkgconfig" --with-internal-glib
execute make -j ${MJOBS}
execute make install
build_done "pkg-config" "0.29.2"
fi
if build "yasm" "1.3.0"; then
download "https://github.com/yasm/yasm/releases/download/v1.3.0/yasm-1.3.0.tar.gz"
execute ./configure --prefix="${WORKSPACE}"
execute make -j ${MJOBS}
execute make install
build_done "yasm" "1.3.0"
fi
if build "nasm" "2.16.01"; then
download "https://www.nasm.us/pub/nasm/releasebuilds/2.16.01/nasm-2.16.01.tar.xz"
execute ./configure --prefix="${WORKSPACE}" --disable-shared --enable-static
execute make -j ${MJOBS}
execute make install
build_done "nasm" "2.16.01"
fi
if build "zlib" "1.2.13"; then
download "https://zlib.net/fossils/zlib-1.2.13.tar.gz"
execute ./configure --static --prefix="${WORKSPACE}"
execute make -j ${MJOBS}
execute make install
build_done "zlib" "1.2.13"
fi
if build "m4" "1.4.19"; then
download "https://ftp.gnu.org/gnu/m4/m4-1.4.19.tar.gz"
execute ./configure --prefix="${WORKSPACE}"
execute make -j ${MJOBS}
execute make install
build_done "m4" "1.4.19"
fi
if build "autoconf" "2.71"; then
download "https://ftp.gnu.org/gnu/autoconf/autoconf-2.71.tar.gz"
execute ./configure --prefix="${WORKSPACE}"
execute make -j ${MJOBS}
execute make install
build_done "autoconf" "2.71"
fi
if build "automake" "1.16.5"; then
download "https://ftp.gnu.org/gnu/automake/automake-1.16.5.tar.gz"
execute ./configure --prefix="${WORKSPACE}"
execute make -j ${MJOBS}
execute make install
build_done "automake" "1.16.5"
fi
fi
if build "libtool" "2.4.7"; then
download "http://ftp.gnu.org/gnu/libtool/libtool-2.4.7.tar.gz"
execute ./configure --prefix="${WORKSPACE}" --enable-static --disable-shared
execute make -j ${MJOBS}
execute make install
build_done "libtool" "2.4.7"
fi
if ${NONFREE_AND_GPL}; then
if ! isLinux; then
if build "openssl" "1.1.1u"; then
download "https://www.openssl.org/source/openssl-${CURRENT_PACKAGE_VERSION}.tar.gz"
if isAppleSilicon; then
sed -n 's/\(##### GNU Hurd\)/"darwin64-arm64-cc" => { \n inherit_from => [ "darwin-common", asm("aarch64_asm") ],\n CFLAGS => add("-Wall"),\n cflags => add("-arch arm64 "),\n lib_cppflags => add("-DL_ENDIAN"),\n bn_ops => "SIXTY_FOUR_BIT_LONG", \n perlasm_scheme => "macosx", \n}, \n\1/g' Configurations/10-main.conf
execute ./Configure --prefix="${WORKSPACE}" no-shared no-asm darwin64-arm64-cc
else
execute ./config --prefix="${WORKSPACE}" --openssldir="${WORKSPACE}" --with-zlib-include="${WORKSPACE}"/include/ --with-zlib-lib="${WORKSPACE}"/lib no-shared zlib
fi
execute make -j ${MJOBS}
execute make install_sw
build_done "openssl" ${CURRENT_PACKAGE_VERSION}
fi
fi
CONFIGURE_OPTIONS+=("--enable-openssl")
else
if build "gmp" "6.2.1"; then
download "https://ftp.gnu.org/gnu/gmp/gmp-6.2.1.tar.xz"
execute ./configure --prefix="${WORKSPACE}" --disable-shared --enable-static
execute make -j ${MJOBS}
execute make install
build_done "gmp" "6.2.1"
fi
if build "nettle" "3.8.1"; then
download "https://ftp.gnu.org/gnu/nettle/nettle-3.8.1.tar.gz"
execute ./configure --prefix="${WORKSPACE}" --disable-shared --enable-static --disable-openssl --disable-documentation --libdir="${WORKSPACE}"/lib CPPFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
execute make -j ${MJOBS}
execute make install
build_done "nettle" "3.8.1"
fi
if [[ ! ${TARGET_ARCH} == 'arm64' ]]; then
if build "gnutls" "3.7.9"; then
download "https://www.gnupg.org/ftp/gcrypt/gnutls/v3.7/gnutls-3.7.9.tar.xz"
execute ./configure --prefix="${WORKSPACE}" --disable-shared --enable-static --disable-doc --disable-tools --disable-cxx --disable-tests --disable-gtk-doc-html --disable-libdane --disable-nls --enable-local-libopts --disable-guile --with-included-libtasn1 --with-included-unistring --without-p11-kit CPPFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
execute make -j ${MJOBS}
execute make install
build_done "gnutls" "3.7.9"
fi
# CONFIGURE_OPTIONS+=("--enable-gmp" "--enable-gnutls")
fi
fi
if ! isLinux; then
if build "cmake" "3.26.4"; then
download "https://github.com/Kitware/CMake/releases/download/v${CURRENT_PACKAGE_VERSION}/cmake-${CURRENT_PACKAGE_VERSION}.tar.gz"
execute ./configure --prefix="${WORKSPACE}" --parallel="${MJOBS}" -- -DCMAKE_USE_OPENSSL=OFF
execute make -j ${MJOBS}
execute make install
build_done "cmake" ${CURRENT_PACKAGE_VERSION}
fi
fi
##
## video library
##
if command_exists "python3"; then
# dav1d needs meson and ninja along with nasm to be built
if ! isLinux; then
if command_exists "pip3"; then
# meson and ninja can be installed via pip3
execute /usr/bin/pip3 install pip setuptools --quiet --upgrade --no-cache-dir --disable-pip-version-check
for r in meson ninja; do
if ! command_exists ${r}; then
execute /usr/bin/pip3 install ${r} --quiet --upgrade --no-cache-dir --disable-pip-version-check
fi
export PATH=${PATH}:~/Library/Python/3.9/bin
done
fi
fi
if command_exists "meson"; then
if build "dav1d" "1.1.0"; then
download "https://code.videolan.org/videolan/dav1d/-/archive/1.1.0/dav1d-1.1.0.tar.gz"
make_dir build
CFLAGSBACKUP=${CFLAGS}
if isAppleSilicon; then
export CFLAGS="-arch arm64"
fi
execute meson build --prefix="${WORKSPACE}" --buildtype=release --default-library=static --libdir="${WORKSPACE}"/lib
execute ninja -C build
execute ninja -C build install
if isAppleSilicon; then
export CFLAGS=${CFLAGSBACKUP}
fi
build_done "dav1d" "1.1.0"
fi
CONFIGURE_OPTIONS+=("--enable-libdav1d")
fi
fi
if build "svtav1" "1.6.0"; then
# Last known working commit which passed CI Tests from HEAD branch
download "https://gitlab.com/AOMediaCodec/SVT-AV1/-/archive/v${CURRENT_PACKAGE_VERSION}/SVT-AV1-v${CURRENT_PACKAGE_VERSION}.tar.gz" "svtav1-${CURRENT_PACKAGE_VERSION}.tar.gz"
cd "${PACKAGES}"/svtav1-${CURRENT_PACKAGE_VERSION}//Build/linux || exit
execute cmake -DCMAKE_INSTALL_PREFIX="${WORKSPACE}" -DENABLE_SHARED=off -DBUILD_SHARED_LIBS=OFF ../.. -G"Unix Makefiles" -DCMAKE_BUILD_TYPE=Release
execute make -j ${MJOBS}
execute make install
execute cp SvtAv1Enc.pc "${WORKSPACE}/lib/pkgconfig/"
execute cp SvtAv1Dec.pc "${WORKSPACE}/lib/pkgconfig/"
build_done "svtav1" ${CURRENT_PACKAGE_VERSION}
fi
CONFIGURE_OPTIONS+=("--enable-libsvtav1")
if command_exists "cargo"; then
if [[ ! "${SKIPRAV1E}" == "yes" ]]; then
if build "rav1e" "0.6.3"; then
download "https://github.com/xiph/rav1e/archive/refs/tags/v0.6.3.tar.gz"
execute cargo install --version "0.9.20+cargo-0.71" cargo-c
execute cargo cinstall --prefix="${WORKSPACE}" --library-type=staticlib --crt-static --release
build_done "rav1e" "0.6.3"
fi
CONFIGURE_OPTIONS+=("--enable-librav1e")
fi
fi
if ${NONFREE_AND_GPL}; then
if build "x264" "latest"; then
clone "https://code.videolan.org/videolan/x264.git" "x264-${CURRENT_PACKAGE_VERSION}"
execute ./configure --prefix="${WORKSPACE}" --enable-static --enable-pic
execute make -j ${MJOBS}
execute make install
execute make install-lib-static
build_done "x264" "${CURRENT_PACKAGE_VERSION}"
fi
CONFIGURE_OPTIONS+=("--enable-libx264")
fi
# 32-bit ARM platforms like Raspberry Pi don't build x265 cleanly.
if ${NONFREE_AND_GPL} && [[ ! "${TARGET_ARCH}" == "armv7l" ]] ; then
if build "x265" "latest"; then
clone "https://bitbucket.org/multicoreware/x265_git.git" "x265-${CURRENT_PACKAGE_VERSION}"
cd build/linux || exit
rm -rf 8bit 10bit 12bit 2>/dev/null
mkdir -p 8bit 10bit 12bit
cd 12bit || exit
execute cmake ../../../source -DCMAKE_INSTALL_PREFIX="${WORKSPACE}" -DENABLE_SHARED=OFF -DBUILD_SHARED_LIBS=OFF -DHIGH_BIT_DEPTH=ON -DENABLE_HDR10_PLUS=ON -DEXPORT_C_API=OFF -DENABLE_CLI=OFF -DMAIN12=ON
execute make -j ${MJOBS}
cd ../10bit || exit
execute cmake ../../../source -DCMAKE_INSTALL_PREFIX="${WORKSPACE}" -DENABLE_SHARED=OFF -DBUILD_SHARED_LIBS=OFF -DHIGH_BIT_DEPTH=ON -DENABLE_HDR10_PLUS=ON -DEXPORT_C_API=OFF -DENABLE_CLI=OFF
execute make -j ${MJOBS}
cd ../8bit || exit
ln -sf ../10bit/libx265.a libx265_main10.a
ln -sf ../12bit/libx265.a libx265_main12.a
execute cmake ../../../source -DCMAKE_INSTALL_PREFIX="${WORKSPACE}" -DENABLE_SHARED=OFF -DBUILD_SHARED_LIBS=OFF -DEXTRA_LIB="x265_main10.a;x265_main12.a;-ldl" -DEXTRA_LINK_FLAGS=-L. -DLINKED_10BIT=ON -DLINKED_12BIT=ON
execute make -j ${MJOBS}
mv libx265.a libx265_main.a
if [[ "${TARGET_OS}" == "darwin" ]]; then
execute "${MACOS_LIBTOOL}" -static -o libx265.a libx265_main.a libx265_main10.a libx265_main12.a 2>/dev/null
else
execute ar -M <<EOF
CREATE libx265.a
ADDLIB libx265_main.a
ADDLIB libx265_main10.a
ADDLIB libx265_main12.a
SAVE
END
EOF
fi
execute make install
if [ -n "${LDEXEFLAGS}" ]; then
sed -i.backup 's/-lgcc_s/-lgcc_eh/g' "${WORKSPACE}/lib/pkgconfig/x265.pc" # The -i.backup is intended and required on macOS: https://stackoverflow.com/questions/5694228/sed-in-place-flag-that-works-both-on-mac-bsd-and-linux
fi
build_done "x265" "${CURRENT_PACKAGE_VERSION}"
fi
CONFIGURE_OPTIONS+=("--enable-libx265")
fi
if [[ ! "${TARGET_ARCH}" == "arm"* ]]; then
if build "libvpx" "1.13.0"; then
download "https://github.com/webmproject/libvpx/archive/refs/tags/v1.13.0.tar.gz" "libvpx-1.13.0.tar.gz"
if [[ "${TARGET_OS}" == "darwin" ]]; then
echo "Applying Darwin patch"
sed "s/,--version-script//g" build/make/Makefile > build/make/Makefile.patched
sed "s/-Wl,--no-undefined -Wl,-soname/-Wl,-undefined,error -Wl,-install_name/g" build/make/Makefile.patched > build/make/Makefile
fi
execute ./configure --prefix="${WORKSPACE}" --disable-unit-tests --disable-shared --disable-examples --as=yasm --enable-vp9-highbitdepth
execute make -j ${MJOBS}
execute make install
build_done "libvpx" "1.13.0"
fi
CONFIGURE_OPTIONS+=("--enable-libvpx")
fi
if ${NONFREE_AND_GPL}; then
if build "xvidcore" "1.3.7"; then
download "https://downloads.xvid.com/downloads/xvidcore-1.3.7.tar.gz"
cd build/generic || exit
execute ./configure --prefix="${WORKSPACE}" --disable-shared --enable-static
execute make -j ${MJOBS}
execute make install
if [[ -f ${WORKSPACE}/lib/libxvidcore.4.dylib ]]; then
execute rm "${WORKSPACE}/lib/libxvidcore.4.dylib"
fi
if [[ -f ${WORKSPACE}/lib/libxvidcore.so ]]; then
execute rm "${WORKSPACE}"/lib/libxvidcore.so*
fi
build_done "xvidcore" "1.3.7"
fi
CONFIGURE_OPTIONS+=("--enable-libxvid")
fi
if ${NONFREE_AND_GPL}; then
if build "vid_stab" "1.1.0"; then
download "https://github.com/georgmartius/vid.stab/archive/v1.1.0.tar.gz" "vid.stab-1.1.0.tar.gz"
if isAppleSilicon; then
curl -L --silent -o "${PACKAGES}/vid.stab-1.1.0/fix_cmake_quoting.patch" "https://raw.githubusercontent.com/Homebrew/formula-patches/5bf1a0e0cfe666ee410305cece9c9c755641bfdf/libvidstab/fix_cmake_quoting.patch"
patch -p1 <fix_cmake_quoting.patch
fi
VIDSTABFLAGS=""
if [[ ! "${TARGET_ARCH}" == "x86_64" ]]; then
VIDSTABFLAGS="-DSSE2_FOUND=false"
fi
execute cmake -DBUILD_SHARED_LIBS=OFF -DCMAKE_INSTALL_PREFIX="${WORKSPACE}" -DUSE_OMP=OFF -DENABLE_SHARED=off ${VIDSTABFLAGS} .
execute make
execute make install
build_done "vid_stab" "1.1.0"
fi
CONFIGURE_OPTIONS+=("--enable-libvidstab")
fi
if [[ ! "${TARGET_ARCH}" == "arm"* ]]; then
if build "av1" "bcfe6fb"; then
# libaom bcfe6fb == v3.5.0
download "https://aomedia.googlesource.com/aom/+archive/bcfe6fbfed315f83ee8a95465c654ee8078dbff9.tar.gz" "av1.tar.gz" "av1"
make_dir "${PACKAGES}"/aom_build
cd "${PACKAGES}"/aom_build || exit
if isAppleSilicon; then
execute cmake -DENABLE_TESTS=0 -DENABLE_EXAMPLES=0 -DCMAKE_INSTALL_PREFIX="${WORKSPACE}" -DCMAKE_INSTALL_LIBDIR=lib -DCONFIG_RUNTIME_CPU_DETECT=0 "${PACKAGES}"/av1
else
execute cmake -DENABLE_TESTS=0 -DENABLE_EXAMPLES=0 -DCMAKE_INSTALL_PREFIX="${WORKSPACE}" -DCMAKE_INSTALL_LIBDIR=lib "${PACKAGES}"/av1
fi
execute make -j ${MJOBS}
execute make install
build_done "av1" "bcfe6fb"
fi
CONFIGURE_OPTIONS+=("--enable-libaom")
fi
if build "zimg" "3.0.4"; then
download "https://github.com/sekrit-twc/zimg/archive/refs/tags/release-3.0.4.tar.gz" "zimg-3.0.4.tar.gz" "zimg"
cd zimg-release-3.0.4 || exit
execute "${WORKSPACE}/bin/libtoolize" -i -f -q
execute ./autogen.sh --prefix="${WORKSPACE}"
execute ./configure --prefix="${WORKSPACE}" --enable-static --disable-shared
execute make -j ${MJOBS}
execute make install
build_done "zimg" "3.0.4"
fi
CONFIGURE_OPTIONS+=("--enable-libzimg")
##
## audio library
##
if command_exists "python3"; then
if command_exists "meson"; then
if build "lv2" "1.18.10"; then
download "https://lv2plug.in/spec/lv2-1.18.10.tar.xz" "lv2-1.18.10.tar.xz"
execute meson build --prefix="${WORKSPACE}" --buildtype=release --default-library=static --libdir="${WORKSPACE}"/lib
execute ninja -C build
execute ninja -C build install
build_done "lv2" "1.18.10"
fi
if build "waflib" "b600c92"; then
download "https://gitlab.com/drobilla/autowaf/-/archive/b600c928b221a001faeab7bd92786d0b25714bc8/autowaf-b600c928b221a001faeab7bd92786d0b25714bc8.tar.gz" "autowaf.tar.gz"
build_done "waflib" "b600c92"
fi