Skip to content

Instantly share code, notes, and snippets.

@holmesal
Created June 3, 2017 01:33
Show Gist options
  • Save holmesal/b1f9b07bb1c77ddb86ab376d6b6099e2 to your computer and use it in GitHub Desktop.
Save holmesal/b1f9b07bb1c77ddb86ab376d6b6099e2 to your computer and use it in GitHub Desktop.
# install audiowaveform
RUN apt-get install -y wget git-core make cmake gcc g++ libmad0-dev libid3tag0-dev libsndfile1-dev libgd2-xpm-dev libboost-filesystem-dev libboost-program-options-dev libboost-regex-dev
WORKDIR ~
RUN git clone https://github.com/bbc/audiowaveform.git
WORKDIR audiowaveform/
RUN wget https://github.com/google/googletest/archive/release-1.8.0.tar.gz
RUN tar xzf release-1.8.0.tar.gz
RUN ln -s googletest-release-1.8.0/googletest googletest
RUN ln -s googletest-release-1.8.0/googlemock googlemock
RUN mkdir build
WORKDIR build/
RUN cmake ..
RUN make
RUN make test
RUN make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment