Skip to content

Commit ff19232

Browse files
committed
Package update
1 parent dbe10ef commit ff19232

File tree

2 files changed

+25
-10
lines changed

2 files changed

+25
-10
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,21 @@ Install the binary to your /usr/local/bin folder? [Y/n] y
237237
Password:
238238
```
239239

240+
Common Error Messages
241+
------------
242+
/Users/m.perl/ffmpeg-build-script/workspace/include/ogg/os_types.h:79:12: error: unknown type name 'uint64_t'
243+
typedef uint64_t ogg_uint64_t;
244+
^
245+
3 errors generated.
246+
3 errors generated.
247+
make[3]: *** [synthesis.lo] Error 1
248+
make[3]: *** Waiting for unfinished jobs....
249+
make[3]: *** [analysis.lo] Error 1
250+
make[2]: *** [all-recursive] Error 1
251+
make[1]: *** [all-recursive] Error 1
252+
make: *** [all] Error 2
253+
254+
240255
Other Projects Of Mine
241256
------------
242257
- [Pushover CLI Client](https://github.com/markus-perl/pushover-cli)

build-ffmpeg

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# https://github.com/markus-perl/ffmpeg-build-script
44

5-
VERSION=1.8
5+
VERSION=1.9
66
CWD=$(pwd)
77
PACKAGES="$CWD/packages"
88
WORKSPACE="$CWD/workspace"
@@ -227,7 +227,7 @@ if build "opus"; then
227227
fi
228228

229229
if build "xvidcore"; then
230-
download "https://downloads.xvid.com/downloads/xvidcore-1.3.5.tar.gz" "xvidcore-1.3.5.tar.gz"
230+
download "https://downloads.xvid.com/downloads/xvidcore-1.3.7.tar.gz" "xvidcore-1.3.7.tar.gz"
231231
cd $PACKAGES/xvidcore || exit
232232
cd build/generic || exit
233233
execute ./configure --prefix=${WORKSPACE} --disable-shared --enable-static
@@ -318,7 +318,7 @@ if build "vid_stab"; then
318318
fi
319319

320320
if build "x265"; then
321-
download "https://bitbucket.org/multicoreware/x265/downloads/x265_3.2.1.tar.gz" "x265-3.2.1.tar.gz"
321+
download "https://bitbucket.org/multicoreware/x265/downloads/x265_3.3.tar.gz" "x265-3.3.tar.gz"
322322
cd $PACKAGES/x265_* || exit
323323
cd source || exit
324324
execute cmake -DCMAKE_INSTALL_PREFIX:PATH=${WORKSPACE} -DENABLE_SHARED:bool=off .
@@ -330,16 +330,16 @@ if build "x265"; then
330330
fi
331331

332332
if build "fdk_aac"; then
333-
download "https://sourceforge.net/projects/opencore-amr/files/fdk-aac/fdk-aac-2.0.0.tar.gz/download?use_mirror=gigenet" "fdk-aac-2.0.0.tar.gz"
334-
cd $PACKAGES/fdk-aac-2.0.0 || exit
333+
download "https://sourceforge.net/projects/opencore-amr/files/fdk-aac/fdk-aac-2.0.1.tar.gz/download?use_mirror=gigenet" "fdk-aac-2.0.1.tar.gz"
334+
cd $PACKAGES/fdk-aac-2.0.1 || exit
335335
execute ./configure --prefix=${WORKSPACE} --disable-shared --enable-static
336336
execute make -j $MJOBS
337337
execute make install
338338
build_done "fdk_aac"
339339
fi
340340

341341
if build "av1"; then
342-
download "https://aomedia.googlesource.com/aom/+archive/60a00de69ca79fe5f51dcbf862aaaa8eb50ec344.tar.gz" "av1.tar.gz" "av1"
342+
download "https://aomedia.googlesource.com/aom/+archive/69a986c7d4c354dfbccec570ccbc44688612c083.tar.gz" "av1.tar.gz" "av1"
343343
cd $PACKAGES/av1 || exit
344344
mkdir -p $PACKAGES/aom_build
345345
cd $PACKAGES/aom_build
@@ -359,17 +359,17 @@ if build "zlib"; then
359359
fi
360360

361361
if build "openssl"; then
362-
download "https://www.openssl.org/source/openssl-1.1.1d.tar.gz" "openssl-1.1.1d.tar.gz"
363-
cd $PACKAGES/openssl-1.1.1d || exit
362+
download "https://www.openssl.org/source/openssl-1.1.1g.tar.gz" "openssl-1.1.1g.tar.gz"
363+
cd $PACKAGES/openssl-1.1.1g || exit
364364
execute ./config --prefix=${WORKSPACE} --openssldir=${WORKSPACE} --with-zlib-include=${WORKSPACE}/include/ --with-zlib-lib=${WORKSPACE}/lib no-shared zlib
365365
execute make -j $MJOBS
366366
execute make install
367367
build_done "openssl"
368368
fi
369369

370370
build "ffmpeg"
371-
download "https://git.ffmpeg.org/gitweb/ffmpeg.git/snapshot/47773f7979d77c1fcd08b57e85af1ad08d9248c8.tar.gz" "ffmpeg-snapshot.tar.bz2"
372-
cd $PACKAGES/ffmpeg-47773f7/ || exit
371+
download "https://git.ffmpeg.org/gitweb/ffmpeg.git/snapshot/d1e8be34114d5782a5a4ea79ef0b9e92b6b37bc7.tar.gz" "ffmpeg-snapshot.tar.bz2"
372+
cd $PACKAGES/ffmpeg-d1e8be3/ || exit
373373
./configure $ADDITIONAL_CONFIGURE_OPTIONS \
374374
--pkgconfigdir="$WORKSPACE/lib/pkgconfig" \
375375
--prefix=${WORKSPACE} \

0 commit comments

Comments
 (0)