Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit bf7a220

Browse files
nnshah1dpatel257
andauthored
change location for ogg and vorbis sources (#493)
* change location for ogg and vorbis sources * update affected files Co-authored-by: drpatel <[email protected]>
1 parent cd411a7 commit bf7a220

File tree

83 files changed

+410
-328
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+410
-328
lines changed

VCA2/centos-7.4/media/dev/Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ RUN wget -O - ${YASM_REPO} | tar xz && \
4646

4747
# Build ogg
4848
ARG OGG_VER=1.3.3
49-
ARG OGG_REPO=https://downloads.xiph.org/releases/ogg/libogg-${OGG_VER}.tar.xz
49+
ARG OGG_REPO=https://github.com/xiph/ogg/releases/download/v${OGG_VER}/libogg-${OGG_VER}.tar.xz
5050

5151
RUN wget -O - ${OGG_REPO} | tar xJ && \
5252
cd libogg-${OGG_VER} && \
@@ -57,10 +57,11 @@ RUN wget -O - ${OGG_REPO} | tar xJ && \
5757

5858
# Build vorbis
5959
ARG VORBIS_VER=1.3.6
60-
ARG VORBIS_REPO=https://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VER}.tar.xz
60+
ARG VORBIS_REPO=https://github.com/xiph/vorbis/archive/v${VORBIS_VER}.tar.gz
6161

62-
RUN wget -O - ${VORBIS_REPO} | tar xJ && \
63-
cd libvorbis-${VORBIS_VER} && \
62+
RUN wget -O - ${VORBIS_REPO} | tar xz && \
63+
cd vorbis-${VORBIS_VER} && \
64+
./autogen.sh && \
6465
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib64 && \
6566
./configure --prefix="/usr/local" --libdir=/usr/local/lib64 --enable-shared && \
6667
make -j8 && \

VCA2/centos-7.4/media/ffmpeg/Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ RUN wget -O - ${YASM_REPO} | tar xz && \
4646

4747
# Build ogg
4848
ARG OGG_VER=1.3.3
49-
ARG OGG_REPO=https://downloads.xiph.org/releases/ogg/libogg-${OGG_VER}.tar.xz
49+
ARG OGG_REPO=https://github.com/xiph/ogg/releases/download/v${OGG_VER}/libogg-${OGG_VER}.tar.xz
5050

5151
RUN wget -O - ${OGG_REPO} | tar xJ && \
5252
cd libogg-${OGG_VER} && \
@@ -57,10 +57,11 @@ RUN wget -O - ${OGG_REPO} | tar xJ && \
5757

5858
# Build vorbis
5959
ARG VORBIS_VER=1.3.6
60-
ARG VORBIS_REPO=https://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VER}.tar.xz
60+
ARG VORBIS_REPO=https://github.com/xiph/vorbis/archive/v${VORBIS_VER}.tar.gz
6161

62-
RUN wget -O - ${VORBIS_REPO} | tar xJ && \
63-
cd libvorbis-${VORBIS_VER} && \
62+
RUN wget -O - ${VORBIS_REPO} | tar xz && \
63+
cd vorbis-${VORBIS_VER} && \
64+
./autogen.sh && \
6465
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib64 && \
6566
./configure --prefix="/usr/local" --libdir=/usr/local/lib64 --enable-shared && \
6667
make -j8 && \

VCA2/centos-7.4/media/gst/Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ RUN wget -O - ${YASM_REPO} | tar xz && \
4646

4747
# Build ogg
4848
ARG OGG_VER=1.3.3
49-
ARG OGG_REPO=https://downloads.xiph.org/releases/ogg/libogg-${OGG_VER}.tar.xz
49+
ARG OGG_REPO=https://github.com/xiph/ogg/releases/download/v${OGG_VER}/libogg-${OGG_VER}.tar.xz
5050

5151
RUN wget -O - ${OGG_REPO} | tar xJ && \
5252
cd libogg-${OGG_VER} && \
@@ -57,10 +57,11 @@ RUN wget -O - ${OGG_REPO} | tar xJ && \
5757

5858
# Build vorbis
5959
ARG VORBIS_VER=1.3.6
60-
ARG VORBIS_REPO=https://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VER}.tar.xz
60+
ARG VORBIS_REPO=https://github.com/xiph/vorbis/archive/v${VORBIS_VER}.tar.gz
6161

62-
RUN wget -O - ${VORBIS_REPO} | tar xJ && \
63-
cd libvorbis-${VORBIS_VER} && \
62+
RUN wget -O - ${VORBIS_REPO} | tar xz && \
63+
cd vorbis-${VORBIS_VER} && \
64+
./autogen.sh && \
6465
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib64 && \
6566
./configure --prefix="/usr/local" --libdir=/usr/local/lib64 --enable-shared && \
6667
make -j8 && \

VCA2/centos-7.5/media/dev/Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ RUN wget -O - ${YASM_REPO} | tar xz && \
4646

4747
# Build ogg
4848
ARG OGG_VER=1.3.3
49-
ARG OGG_REPO=https://downloads.xiph.org/releases/ogg/libogg-${OGG_VER}.tar.xz
49+
ARG OGG_REPO=https://github.com/xiph/ogg/releases/download/v${OGG_VER}/libogg-${OGG_VER}.tar.xz
5050

5151
RUN wget -O - ${OGG_REPO} | tar xJ && \
5252
cd libogg-${OGG_VER} && \
@@ -57,10 +57,11 @@ RUN wget -O - ${OGG_REPO} | tar xJ && \
5757

5858
# Build vorbis
5959
ARG VORBIS_VER=1.3.6
60-
ARG VORBIS_REPO=https://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VER}.tar.xz
60+
ARG VORBIS_REPO=https://github.com/xiph/vorbis/archive/v${VORBIS_VER}.tar.gz
6161

62-
RUN wget -O - ${VORBIS_REPO} | tar xJ && \
63-
cd libvorbis-${VORBIS_VER} && \
62+
RUN wget -O - ${VORBIS_REPO} | tar xz && \
63+
cd vorbis-${VORBIS_VER} && \
64+
./autogen.sh && \
6465
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib64 && \
6566
./configure --prefix="/usr/local" --libdir=/usr/local/lib64 --enable-shared && \
6667
make -j8 && \

VCA2/centos-7.5/media/ffmpeg/Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ RUN wget -O - ${YASM_REPO} | tar xz && \
4646

4747
# Build ogg
4848
ARG OGG_VER=1.3.3
49-
ARG OGG_REPO=https://downloads.xiph.org/releases/ogg/libogg-${OGG_VER}.tar.xz
49+
ARG OGG_REPO=https://github.com/xiph/ogg/releases/download/v${OGG_VER}/libogg-${OGG_VER}.tar.xz
5050

5151
RUN wget -O - ${OGG_REPO} | tar xJ && \
5252
cd libogg-${OGG_VER} && \
@@ -57,10 +57,11 @@ RUN wget -O - ${OGG_REPO} | tar xJ && \
5757

5858
# Build vorbis
5959
ARG VORBIS_VER=1.3.6
60-
ARG VORBIS_REPO=https://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VER}.tar.xz
60+
ARG VORBIS_REPO=https://github.com/xiph/vorbis/archive/v${VORBIS_VER}.tar.gz
6161

62-
RUN wget -O - ${VORBIS_REPO} | tar xJ && \
63-
cd libvorbis-${VORBIS_VER} && \
62+
RUN wget -O - ${VORBIS_REPO} | tar xz && \
63+
cd vorbis-${VORBIS_VER} && \
64+
./autogen.sh && \
6465
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib64 && \
6566
./configure --prefix="/usr/local" --libdir=/usr/local/lib64 --enable-shared && \
6667
make -j8 && \

VCA2/centos-7.5/media/gst/Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ RUN wget -O - ${YASM_REPO} | tar xz && \
4646

4747
# Build ogg
4848
ARG OGG_VER=1.3.3
49-
ARG OGG_REPO=https://downloads.xiph.org/releases/ogg/libogg-${OGG_VER}.tar.xz
49+
ARG OGG_REPO=https://github.com/xiph/ogg/releases/download/v${OGG_VER}/libogg-${OGG_VER}.tar.xz
5050

5151
RUN wget -O - ${OGG_REPO} | tar xJ && \
5252
cd libogg-${OGG_VER} && \
@@ -57,10 +57,11 @@ RUN wget -O - ${OGG_REPO} | tar xJ && \
5757

5858
# Build vorbis
5959
ARG VORBIS_VER=1.3.6
60-
ARG VORBIS_REPO=https://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VER}.tar.xz
60+
ARG VORBIS_REPO=https://github.com/xiph/vorbis/archive/v${VORBIS_VER}.tar.gz
6161

62-
RUN wget -O - ${VORBIS_REPO} | tar xJ && \
63-
cd libvorbis-${VORBIS_VER} && \
62+
RUN wget -O - ${VORBIS_REPO} | tar xz && \
63+
cd vorbis-${VORBIS_VER} && \
64+
./autogen.sh && \
6465
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib64 && \
6566
./configure --prefix="/usr/local" --libdir=/usr/local/lib64 --enable-shared && \
6667
make -j8 && \

VCA2/centos-7.6/media/dev/Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ RUN wget -O - ${YASM_REPO} | tar xz && \
4646

4747
# Build ogg
4848
ARG OGG_VER=1.3.3
49-
ARG OGG_REPO=https://downloads.xiph.org/releases/ogg/libogg-${OGG_VER}.tar.xz
49+
ARG OGG_REPO=https://github.com/xiph/ogg/releases/download/v${OGG_VER}/libogg-${OGG_VER}.tar.xz
5050

5151
RUN wget -O - ${OGG_REPO} | tar xJ && \
5252
cd libogg-${OGG_VER} && \
@@ -57,10 +57,11 @@ RUN wget -O - ${OGG_REPO} | tar xJ && \
5757

5858
# Build vorbis
5959
ARG VORBIS_VER=1.3.6
60-
ARG VORBIS_REPO=https://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VER}.tar.xz
60+
ARG VORBIS_REPO=https://github.com/xiph/vorbis/archive/v${VORBIS_VER}.tar.gz
6161

62-
RUN wget -O - ${VORBIS_REPO} | tar xJ && \
63-
cd libvorbis-${VORBIS_VER} && \
62+
RUN wget -O - ${VORBIS_REPO} | tar xz && \
63+
cd vorbis-${VORBIS_VER} && \
64+
./autogen.sh && \
6465
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib64 && \
6566
./configure --prefix="/usr/local" --libdir=/usr/local/lib64 --enable-shared && \
6667
make -j8 && \

VCA2/centos-7.6/media/ffmpeg/Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ RUN wget -O - ${YASM_REPO} | tar xz && \
4646

4747
# Build ogg
4848
ARG OGG_VER=1.3.3
49-
ARG OGG_REPO=https://downloads.xiph.org/releases/ogg/libogg-${OGG_VER}.tar.xz
49+
ARG OGG_REPO=https://github.com/xiph/ogg/releases/download/v${OGG_VER}/libogg-${OGG_VER}.tar.xz
5050

5151
RUN wget -O - ${OGG_REPO} | tar xJ && \
5252
cd libogg-${OGG_VER} && \
@@ -57,10 +57,11 @@ RUN wget -O - ${OGG_REPO} | tar xJ && \
5757

5858
# Build vorbis
5959
ARG VORBIS_VER=1.3.6
60-
ARG VORBIS_REPO=https://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VER}.tar.xz
60+
ARG VORBIS_REPO=https://github.com/xiph/vorbis/archive/v${VORBIS_VER}.tar.gz
6161

62-
RUN wget -O - ${VORBIS_REPO} | tar xJ && \
63-
cd libvorbis-${VORBIS_VER} && \
62+
RUN wget -O - ${VORBIS_REPO} | tar xz && \
63+
cd vorbis-${VORBIS_VER} && \
64+
./autogen.sh && \
6465
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib64 && \
6566
./configure --prefix="/usr/local" --libdir=/usr/local/lib64 --enable-shared && \
6667
make -j8 && \

VCA2/centos-7.6/media/gst/Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ RUN wget -O - ${YASM_REPO} | tar xz && \
4646

4747
# Build ogg
4848
ARG OGG_VER=1.3.3
49-
ARG OGG_REPO=https://downloads.xiph.org/releases/ogg/libogg-${OGG_VER}.tar.xz
49+
ARG OGG_REPO=https://github.com/xiph/ogg/releases/download/v${OGG_VER}/libogg-${OGG_VER}.tar.xz
5050

5151
RUN wget -O - ${OGG_REPO} | tar xJ && \
5252
cd libogg-${OGG_VER} && \
@@ -57,10 +57,11 @@ RUN wget -O - ${OGG_REPO} | tar xJ && \
5757

5858
# Build vorbis
5959
ARG VORBIS_VER=1.3.6
60-
ARG VORBIS_REPO=https://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VER}.tar.xz
60+
ARG VORBIS_REPO=https://github.com/xiph/vorbis/archive/v${VORBIS_VER}.tar.gz
6161

62-
RUN wget -O - ${VORBIS_REPO} | tar xJ && \
63-
cd libvorbis-${VORBIS_VER} && \
62+
RUN wget -O - ${VORBIS_REPO} | tar xz && \
63+
cd vorbis-${VORBIS_VER} && \
64+
./autogen.sh && \
6465
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib64 && \
6566
./configure --prefix="/usr/local" --libdir=/usr/local/lib64 --enable-shared && \
6667
make -j8 && \

VCA2/ubuntu-16.04/media/dev/Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ RUN wget -O - ${YASM_REPO} | tar xz && \
4242

4343
# Build ogg
4444
ARG OGG_VER=1.3.3
45-
ARG OGG_REPO=https://downloads.xiph.org/releases/ogg/libogg-${OGG_VER}.tar.xz
45+
ARG OGG_REPO=https://github.com/xiph/ogg/releases/download/v${OGG_VER}/libogg-${OGG_VER}.tar.xz
4646

4747
RUN wget -O - ${OGG_REPO} | tar xJ && \
4848
cd libogg-${OGG_VER} && \
@@ -53,10 +53,11 @@ RUN wget -O - ${OGG_REPO} | tar xJ && \
5353

5454
# Build vorbis
5555
ARG VORBIS_VER=1.3.6
56-
ARG VORBIS_REPO=https://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VER}.tar.xz
56+
ARG VORBIS_REPO=https://github.com/xiph/vorbis/archive/v${VORBIS_VER}.tar.gz
5757

58-
RUN wget -O - ${VORBIS_REPO} | tar xJ && \
59-
cd libvorbis-${VORBIS_VER} && \
58+
RUN wget -O - ${VORBIS_REPO} | tar xz && \
59+
cd vorbis-${VORBIS_VER} && \
60+
./autogen.sh && \
6061
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib/x86_64-linux-gnu && \
6162
./configure --prefix="/usr/local" --libdir=/usr/local/lib/x86_64-linux-gnu --enable-shared && \
6263
make -j8 && \

0 commit comments

Comments
 (0)