From 35561b51e52b3a862b8f6c8a1f36a4bec04817e8 Mon Sep 17 00:00:00 2001 From: JoeLametta Date: Mon, 21 Oct 2019 16:30:00 +0000 Subject: [PATCH] Dockerfile: build newer libcdio version Signed-off-by: JoeLametta --- Dockerfile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3955cc6..c6d8ca7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,26 +6,26 @@ RUN apt-get update \ libiso9660-dev python-pip swig make pkgconf \ eject locales \ autoconf libtool curl \ - && pip install pycdio==2.0.0 + && pip install pycdio==2.1.0 # libcdio-paranoia / libcdio-utils are wrongfully packaged in Debian, thus built manually # see https://github.com/whipper-team/whipper/pull/237#issuecomment-367985625 -RUN curl -o - 'https://ftp.gnu.org/gnu/libcdio/libcdio-2.0.0.tar.gz' | tar zxf - \ - && cd libcdio-2.0.0 \ +RUN curl -o - 'https://ftp.gnu.org/gnu/libcdio/libcdio-2.1.0.tar.bz2' | tar jxf - \ + && cd libcdio-2.1.0 \ && autoreconf -fi \ && ./configure --disable-dependency-tracking --disable-cxx --disable-example-progs --disable-static \ && make install \ && cd .. \ - && rm -rf libcdio-2.0.0 + && rm -rf libcdio-2.1.0 # Install cd-paranoia from tarball -RUN curl -o - 'https://ftp.gnu.org/gnu/libcdio/libcdio-paranoia-10.2+0.94+2.tar.gz' | tar zxf - \ - && cd libcdio-paranoia-10.2+0.94+2 \ +RUN curl -o - 'https://ftp.gnu.org/gnu/libcdio/libcdio-paranoia-10.2+2.0.0.tar.bz2' | tar jxf - \ + && cd libcdio-paranoia-10.2+2.0.0 \ && autoreconf -fi \ && ./configure --disable-dependency-tracking --disable-example-progs --disable-static \ && make install \ && cd .. \ - && rm -rf libcdio-paranoia-10.2+0.94+2 + && rm -rf libcdio-paranoia-10.2+2.0.0 RUN ldconfig