From 3d1e4fcd590414c734ded2b4bca11621de0425f2 Mon Sep 17 00:00:00 2001 From: ctrejos Date: Tue, 17 Mar 2020 16:43:23 -0600 Subject: [PATCH] Add Debian packaging sources --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 16 ++++++++++++++++ debian/copyright | 23 +++++++++++++++++++++++ debian/rules | 7 +++++++ debian/source/format | 1 + 6 files changed, 53 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100755 debian/rules create mode 100644 debian/source/format diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..846bc61 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +gst-perf (0.3-0) unstable; urgency=medium + + * Initial release + + -- Ridgerun Engineering Mon, 16 Mar 2020 17:18:08 -0600 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..f599e28 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +10 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..8716ff8 --- /dev/null +++ b/debian/control @@ -0,0 +1,16 @@ +Source: gst-perf +Priority: optional +Maintainer: Ridgerun Engineering +Build-Depends: debhelper (>= 10), + autotools-dev +Standards-Version: 4.1.2 +Section: libs + +Package: libgstperf +Architecture: any +Multi-Arch: same +Depends: ${shlibs:Depends}, ${misc:Depends}, + libgstreamer1.0-dev, + libgstreamer-plugins-base1.0-dev +Description: GstPerf + A GStreamer element to measure framerate, bitrate and CPU usage. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..d9f54a2 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,23 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: gst-perf +Upstream-Contact: support@ridgerun.com + +License: LGPL-2+ +Copyright: + + This package is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian GNU/Linux systems, the complete text of the GNU Lesser General +Public License can be found in `/usr/share/common-licenses/LGPL'. diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..b114ce6 --- /dev/null +++ b/debian/rules @@ -0,0 +1,7 @@ +#!/usr/bin/make -f +#export DH_VERBOSE = 1 + +export DEB_BUILD_MAINT_OPTIONS = hardening=+all + +%: + dh $@ diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt)