From f4ba29f1ef4926559e5d5e8445a8ffcbbf763040 Mon Sep 17 00:00:00 2001 From: Carlos Macasaet Date: Sun, 12 Sep 2021 18:21:29 -0700 Subject: [PATCH] Install libimobiledevice-glue from source This installs libimobiledevice-glue from source as it appears it is no longer available to `apt-get`. Resolves: #182 --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index dccbfaf..a96e1cf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -38,12 +38,15 @@ RUN apt update \ # Build libimobiledevice # ---------------------- RUN git clone https://github.com/libimobiledevice/libplist \ + && git clone https://github.com/libimobiledevice/libimobiledevice-glue \ && git clone https://github.com/libimobiledevice/libusbmuxd \ && git clone https://github.com/libimobiledevice/libimobiledevice \ && git clone https://github.com/libimobiledevice/usbmuxd \ && cd libplist && ./autogen.sh && make && make install && ldconfig \ + && cd ../libimobiledevice-glue && PKG_CONFIG_PATH=/usr/local/lib/pkgconfig ./autogen.sh --prefix=/usr && make && make install && ldconfig \ + && cd ../libusbmuxd && PKG_CONFIG_PATH=/usr/local/lib/pkgconfig ./autogen.sh && make && make install && ldconfig \ && cd ../libimobiledevice && PKG_CONFIG_PATH=/usr/local/lib/pkgconfig ./autogen.sh --enable-debug && make && make install && ldconfig \ @@ -51,7 +54,7 @@ RUN git clone https://github.com/libimobiledevice/libplist \ && cd ../usbmuxd && PKG_CONFIG_PATH=/usr/local/lib/pkgconfig ./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var --runstatedir=/run && make && make install \ # Clean up. - && cd .. && rm -rf libplist libusbmuxd libimobiledevice usbmuxd + && cd .. && rm -rf libplist libimobiledevice-glue libusbmuxd libimobiledevice usbmuxd # Installing MVT # --------------