diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 4 | ||||
-rw-r--r-- | debian/grc.conf | 9 | ||||
-rwxr-xr-x | debian/rules | 4 |
3 files changed, 15 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 22f1362a3..25e638202 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,9 +1,9 @@ gnuradio (3.3svn) unstable; urgency=low - * New upstream release 3.2 + * Development trunk updates as of packaging date * See http://gnuradio.org/trac - -- Johnathan Corgan <jcorgan@corganenterprises.com> Sat, 23 May 2009 18:00:00 -0800 + -- Johnathan Corgan <jcorgan@corganenterprises.com> Sun, 05 Jul 2009 18:00:00 -0800 gnuradio (3.2) unstable; urgency=low diff --git a/debian/grc.conf b/debian/grc.conf new file mode 100644 index 000000000..eb503ec95 --- /dev/null +++ b/debian/grc.conf @@ -0,0 +1,9 @@ +# This file contains system wide configuration data for GNU Radio. +# You may override any setting on a per-user basis by editing +# ~/.gnuradio/config.conf + +[grc] +pythonw = python +doc_dir = /usr/share/doc/gnuradio-doc +global_blocks_path = /usr/share/gnuradio/grc/blocks +local_blocks_path = /usr/local/share/gnuradio/grc/blocks diff --git a/debian/rules b/debian/rules index 6a6e5c7f8..42464ced9 100755 --- a/debian/rules +++ b/debian/rules @@ -86,6 +86,10 @@ install-stamp: extract-stamp debian/control install -m 0644 -D debian/libusrp2.limits \ debian/tmp/etc/security/limits.d/libusrp2.limits + : # Install custom grc.conf + install -m 0644 -D debian/grc.conf \ + debian/tmp/etc/gnuradio/conf.d/grc.conf + dh_install --sourcedir=debian/tmp touch $@ |