diff options
Diffstat (limited to 'cookbooks/gnuradio/recipes')
| -rw-r--r-- | cookbooks/gnuradio/recipes/default.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/cookbooks/gnuradio/recipes/default.rb b/cookbooks/gnuradio/recipes/default.rb index 758e00c..c24542d 100644 --- a/cookbooks/gnuradio/recipes/default.rb +++ b/cookbooks/gnuradio/recipes/default.rb @@ -34,6 +34,15 @@ git 'Checkout gr-osmosdr' do group 'vagrant' end +git 'Checkout gqrx' do + repository node[:repos][:gqrx] + reference 'master' + action :checkout + destination node[:workingdir] + '/gqrx' + user 'vagrant' + group 'vagrant' +end + bash 'Compile rtl-sdr' do user 'vagrant' group 'vagrant' @@ -94,3 +103,13 @@ bash 'Install gr-osmosdr' do ldconfig EOH end + +bash 'Compile gqrx' do + user 'vagrant' + group 'vagrant' + cwd node[:workingdir] + '/gqrx' + code <<-EOH + qmake gqrx.pro + make + EOH +end |
