aboutsummaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-08-19 04:21:28 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-08-19 04:21:28 +0000
commit1b584227d181dd710bf3505bbd334520c6454dc1 (patch)
treeaa5dd8a4f750dbbfd3879d0b7d6562c67674ad03 /debian
parent56c3d92eeee1065ea40b64f9f4dcbed9845dd357 (diff)
debianized using library template
svn path=/trunk/externals/arraysize/; revision=13834
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control15
-rw-r--r--debian/copyright7
-rw-r--r--debian/links3
-rwxr-xr-xdebian/rules16
-rw-r--r--debian/source/format1
7 files changed, 48 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..13dc1a0
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+pd-arraysize (0.1-1) unstable; urgency=low
+
+ * Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP>
+
+ -- Hans-Christoph Steiner <hans@eds.org> Wed, 18 Aug 2010 23:27:04 -0500
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..83ab12c
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,15 @@
+Source: pd-arraysize
+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-arraysize
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, pd
+Description: a Pd object to report the size of an array
+ This provides a simple object for Pure Data that reports the size of an array
+ by name.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..1617f53
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,7 @@
+Debianized-By: Hans-Christoph Steiner <hans@eds.org>
+Debianized-Date: Sat, 3 Apr 2010 17:14:25 -0400
+Files: *
+Copyright: 2002, Juha Vehviläinen
+
+License: Public Domain
+ This code is too trivial to have a licence or copyright.
diff --git a/debian/links b/debian/links
new file mode 100644
index 0000000..7eaa9eb
--- /dev/null
+++ b/debian/links
@@ -0,0 +1,3 @@
+usr/lib/pd/extra/arraysize/README.txt usr/share/doc/pd-template/README
+
+
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..3b5c9cf
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,16 @@
+#!/usr/bin/make -f
+
+LIBRARY_NAME = arraysize
+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/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)