aboutsummaryrefslogtreecommitdiff
path: root/comport/debian
diff options
context:
space:
mode:
Diffstat (limited to 'comport/debian')
-rw-r--r--comport/debian/changelog5
-rw-r--r--comport/debian/compat1
-rw-r--r--comport/debian/control16
-rw-r--r--comport/debian/copyright17
-rw-r--r--comport/debian/links4
-rwxr-xr-xcomport/debian/rules16
-rw-r--r--comport/debian/source/format1
7 files changed, 60 insertions, 0 deletions
diff --git a/comport/debian/changelog b/comport/debian/changelog
new file mode 100644
index 0000000..c7b4297
--- /dev/null
+++ b/comport/debian/changelog
@@ -0,0 +1,5 @@
+pd-template (0.1-1) unstable; urgency=low
+
+ * Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP>
+
+ -- Hans-Christoph Steiner <hans@eds.org> Tue, 17 Aug 2010 15:24:53 -0400
diff --git a/comport/debian/compat b/comport/debian/compat
new file mode 100644
index 0000000..7f8f011
--- /dev/null
+++ b/comport/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/comport/debian/control b/comport/debian/control
new file mode 100644
index 0000000..a69eccc
--- /dev/null
+++ b/comport/debian/control
@@ -0,0 +1,16 @@
+Source: pd-comport
+Section: sound
+Priority: optional
+Maintainer: Debian Multimedia Maintainers <pkg-multimedia-maintainers@lists.alioth.debian.org>
+Uploaders: Hans-Christoph Steiner <hans@eds.org>
+Build-Depends: debhelper (>= 7.0.50~), puredata
+Standards-Version: 3.9.1
+Homepage: http://puredata.info
+
+Package: pd-comport
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, pd
+Description: Pd object for reading and writing to serial ports
+ comport is a cross-platform object for Pure Data that allows you to read and
+ write bytes and lists of data to /dev/tty* devices including serial port,
+ USB-serial devices, Bluetooth-serial, etc.
diff --git a/comport/debian/copyright b/comport/debian/copyright
new file mode 100644
index 0000000..0dada36
--- /dev/null
+++ b/comport/debian/copyright
@@ -0,0 +1,17 @@
+Debianized-By: Hans-Christoph Steiner <hans@eds.org>
+Debianized-Date: Tue, 17 Aug 2010 15:24:53 -0400
+Files: *
+Copyright: 1998-2006, Winfried Ritsch, Institute for Electronic Music - Graz
+ 2005-2010, Hans-Christoph Steiner
+ 2006-2010, Martin Peach
+ 2007-2010, IOhannes m. zmoelnig
+
+License: LGPL-2+
+ This package is free software; you can redistribute it and/or modify
+ it under the terms of the GNU Library General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ On Debian systems, the complete text of the GNU Library General Public
+ License version 2 can be found in file "/usr/share/common-licenses/LGPL-2".
+
diff --git a/comport/debian/links b/comport/debian/links
new file mode 100644
index 0000000..cf81ab1
--- /dev/null
+++ b/comport/debian/links
@@ -0,0 +1,4 @@
+usr/lib/pd/extra/template/README.txt usr/share/doc/pd-template/README
+usr/lib/pd/extra/template/examples usr/share/doc/pd-template/examples
+
+
diff --git a/comport/debian/rules b/comport/debian/rules
new file mode 100755
index 0000000..0c273a4
--- /dev/null
+++ b/comport/debian/rules
@@ -0,0 +1,16 @@
+#!/usr/bin/make -f
+
+LIBRARY_NAME = template
+PACKAGE = pd-$(LIBRARY_NAME)
+pkglibdir = /usr/lib/pd/extra
+
+%:
+ dh $@
+
+override_dh_auto_install:
+ make DESTDIR=$(CURDIR)/debian/$(PACKAGE) pkglibdir=$(pkglibdir) install
+
+override_dh_shlibdeps:
+ dpkg-shlibdeps $(CURDIR)/debian/$(PACKAGE)$(pkglibdir)/$(LIBRARY_NAME)/*.pd_linux \
+ -T$(CURDIR)/debian/$(PACKAGE).substvars
+
diff --git a/comport/debian/source/format b/comport/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/comport/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)