summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorJavier S. Pedro <maemo@javispedro.com>2011-12-31 17:50:06 +0100
committerJavier S. Pedro <maemo@javispedro.com>2011-12-31 17:50:06 +0100
commit352dad23c7847d234e11c1034e1354fbd9a8349a (patch)
tree6caab2315dcb20882a05453412788578acc119e5 /debian
downloadfmrxd-352dad23c7847d234e11c1034e1354fbd9a8349a.tar.gz
fmrxd-352dad23c7847d234e11c1034e1354fbd9a8349a.zip
initial import
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control24
-rw-r--r--debian/copyright23
-rw-r--r--debian/docs0
-rw-r--r--debian/fmrxd.aegis15
-rw-r--r--debian/fmrxd.install3
-rwxr-xr-xdebian/rules13
8 files changed, 84 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..f307b8a
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+fmrxd (0.1) unstable; urgency=low
+
+ * Initial Release.
+
+ -- Javier S. Pedro <maemo@javispedro.com> Sat, 03 Sep 2011 19:47:50 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7f8f011
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..05a2e34
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,24 @@
+Source: fmrxd
+Section: sound
+Priority: extra
+Maintainer: Javier S. Pedro <maemo@javispedro.com>
+Build-Depends: debhelper (>= 7), aegis-manifest-dev, libglib2.0-dev,
+ libasound2-dev, libdbus-glib-1-dev, libdbus-1-dev
+Standards-Version: 3.8.4
+Homepage: https://gitorious.org/n950-fmrx/fmrxd
+
+Package: fmrxd
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: Daemon to enable and multiplex access to the N950/N9 radio tuner
+ fmrxd is a small daemon that enables the use of the FM Radio tuner available on
+ the Nokia N9 and N950 devices, providing a D-Bus API that can be used by
+ user programs that will not require any additional privileges.
+
+Package: fmrx-utils
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: Command line applets for the fmrxd FM radio daemon
+ This package contains the command line utilities fmrx-cat and fmrx-ctl that
+ can be used to fetch audio data from the radio device and control the
+ tuner device.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..1b606ec
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,23 @@
+This work was created and packaged for Debian by:
+
+ Javier S. Pedro <maemo@javispedro.com> on Sat, 03 Sep 2011 19:47:50 +0200
+
+Copyright:
+
+ Javier S. Pedro <maemo@javispedro.com>
+
+License:
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 2 of the License, or
+ (at your option) any later version.
+
+ This package is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/debian/docs
diff --git a/debian/fmrxd.aegis b/debian/fmrxd.aegis
new file mode 100644
index 0000000..18d2100
--- /dev/null
+++ b/debian/fmrxd.aegis
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<aegis>
+ <provide>
+ <credential name="dbus-server-bind" />
+ <dbus name="com.javispedro.fmrxd" own="dbus-server-bind" bus="system">
+ <node name="/com/javispedro/fmrxd">
+ </node>
+ </dbus>
+ </provide>
+ <request>
+ <credential name="UID::root" />
+ <credential name="dbus-server-bind" />
+ <for path="/usr/sbin/fmrxd" />
+ </request>
+</aegis>
diff --git a/debian/fmrxd.install b/debian/fmrxd.install
new file mode 100644
index 0000000..58728e8
--- /dev/null
+++ b/debian/fmrxd.install
@@ -0,0 +1,3 @@
+fmrxd usr/sbin
+fmrx-ctl usr/bin
+fmrx-cat usr/bin
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..917d9bf
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,13 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+ dh $@