debian: first shot at umtrx debianization

This commit is contained in:
Josh Blum
2015-05-26 17:12:04 -07:00
parent 10e758be8c
commit 471eedbb6a
7 changed files with 61 additions and 0 deletions

5
debian/changelog vendored Normal file
View File

@@ -0,0 +1,5 @@
umtrx (1.0.2+1SNAPSHOT1432672997-g10e758b~unstable) unstable; urgency=low
* Pending release (master branch)
-- Josh Blum <josh@pothosware.com> Tue, 26 May 2015 13:43:28 -0700

1
debian/compat vendored Normal file
View File

@@ -0,0 +1 @@
9

23
debian/control vendored Normal file
View File

@@ -0,0 +1,23 @@
Source: umtrx
Section: libs
Priority: optional
Maintainer: Josh Blum <josh@pothosware.com>
Build-Depends:
debhelper (>= 9.0.0),
cmake (>= 2.8),
libboost-all-dev,
libuhd-dev (>= 3.7)
Standards-Version: 3.9.5
Homepage: http://umtrx.org/
Vcs-Git: https://github.com/fairwaves/UHD-Fairwaves.git
Vcs-Browser: https://github.com/fairwaves/UHD-Fairwaves
Package: umtrx
Section: libs
Architecture: any
Pre-Depends: multiarch-support, ${misc:Pre-Depends}
Depends: ${shlibs:Depends}, ${misc:Depends}
Recommends: python
Description: Fairwaves UmTRX hardware driver
The industrial grade dual-channel wide-band SDR transceiver.
Includes UmTRX command line utilities and UHD device module.

12
debian/copyright vendored Normal file
View File

@@ -0,0 +1,12 @@
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: umtrx
Source: https://github.com/fairwaves/UHD-Fairwaves
Files: *
Copyright:
Copyright 2012-2015 Fairwaves LLC
Copyright 2010-2012 Ettus Research LLC
License: GPL-3
On Debian systems, the full text of the GNU General Public
License version 3 can be found in the file
`/usr/share/common-licenses/GPL-3'.

1
debian/docs vendored Normal file
View File

@@ -0,0 +1 @@
README

18
debian/rules vendored Normal file
View File

@@ -0,0 +1,18 @@
#!/usr/bin/make -f
# -*- makefile -*-
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
export DEB_HOST_MULTIARCH
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
# This has to be exported to make some magic below work.
export DH_OPTIONS
%:
dh $@ --buildsystem=cmake --parallel --sourcedirectory=host
override_dh_auto_configure:
dh_auto_configure -- -DLIB_SUFFIX="/$(DEB_HOST_MULTIARCH)"

1
debian/source/format vendored Normal file
View File

@@ -0,0 +1 @@
3.0 (quilt)