shithub: opusfile

ref: 51de1cedecac2fed792dca1a9cc70eec9845da4f
dir: /mingw/Dockerfile/

View raw version
FROM fedora:21
MAINTAINER [email protected]

# Linux build.
RUN yum update -y
RUN yum install -y git gcc make wget
RUN yum install -y autoconf automake libtool

# mingw cross build.
RUN yum install -y mingw32-gcc zip

RUN yum clean all

RUN git clone https://git.xiph.org/opusfile.git

WORKDIR opusfile
RUN git pull
RUN make -C mingw
RUN ./autogen.sh && ./configure --host=i686-w64-mingw32 --prefix=${PWD}/mingw PKG_CONFIG_PATH=${PWD}/mingw/lib/pkgconfig && make && make check && make install