Merge branch 'testing' of https://github.com/ptrkrysik/gr-gsm into testing

This commit is contained in:
Ash Wilson 2016-04-14 18:42:23 -07:00
commit 9ee6f7fab8
2 changed files with 30 additions and 2 deletions

View File

@ -200,8 +200,8 @@ install(FILES cmake/Modules/gr-gsmConfig.cmake
########################################################################
# Cpack stuff
########################################################################
set(CPACK_DEBIAN_PACKAGE_DEPENDS "gnuradio (>> 3.7.9), libboost-iostreams1.58.0, libboost-system1.58.0, libboost-filesystem1.58.0, liblog4cpp5, libosmosdr0, libpcsclite1, libqwt-dev (>> 6.1.2), libvolk1-bin, libvolk1.1, python-talloc (>> 2.1.5)")
set(CPACK_PACKAGE_NAME gnuradio-grgsm)
set(CPACK_DEBIAN_PACKAGE_DEPENDS "gnuradio (>> 3.7.9), gr-osmosdr, libosmogsm5")
set(CPACK_PACKAGE_NAME gr-gsm)
set(CPACK_PACKAGE_VERSION 0.9.0)
set(CPACK_PACKAGE_MAINTAINER ptrkrysik@gmail.com)
set(CPACK_PACKAGE_DESCRIPTION "GSM functionality for Gnuradio")

View File

@ -0,0 +1,28 @@
FROM ubuntu:16.04
MAINTAINER Ash Wilson
RUN apt-get update && apt-get install -y \
uhd-host \
cmake \
autoconf \
libtool \
build-essential \
libcppunit-dev \
swig \
doxygen \
liblog4cpp5-dev \
python-scipy \
gnuradio-dev \
gr-osmosdr \
libosmocore-dev
COPY ./ /src/
RUN ls /src
RUN mkdir /src/build && \
cd /src/build && \
cmake .. && \
make package && \
cpack -G DEB && \
ls