Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade ORC_URL and libsvips 8.9.1 #4

Merged
merged 2 commits into from
Feb 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified build/libvips.tar.gz
Binary file not shown.
6 changes: 3 additions & 3 deletions container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ RUN cd /usr/src \
&& make install

ARG ORC_VERSION=0.4.28
ARG ORC_URL=http://cgit.freedesktop.org/gstreamer/orc/snapshot
ARG ORC_URL=https://gstreamer.freedesktop.org/src/orc

RUN cd /usr/src \
&& wget ${ORC_URL}/orc-$ORC_VERSION.tar.gz \
&& tar xf orc-${ORC_VERSION}.tar.gz \
&& wget ${ORC_URL}/orc-$ORC_VERSION.tar.xz \
&& tar xf orc-${ORC_VERSION}.tar.xz \
&& cd orc-${ORC_VERSION} \
&& ./autogen.sh \
&& ./configure --prefix=/usr/src/vips --disable-gtk-doc \
Expand Down