aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-01-22 05:44:51 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-01-22 05:44:51 +0000
commit316f89bb12f7647f404e9be59caa65b13c17817e (patch)
tree26c302a913ad12122b4027687115beee293527aa
parent331225be2ea371302c0d84ea6aba4d26bac7587c (diff)
ok, things are building with debuild, but not installing properly
svn path=/trunk/externals/ext13/; revision=13074
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control17
-rw-r--r--debian/copyright8
-rw-r--r--debian/dirs4
-rwxr-xr-xdebian/rules8
6 files changed, 43 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..7666272
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+pd-ext13 (0.17.0-1.1) unstable; urgency=low
+
+ * Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP>
+
+ -- Hans-Christoph Steiner <hans@eds.org> Thu, 21 Jan 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..2d861e4
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,17 @@
+Source: pd-ext13
+Section: sound
+Priority: optional
+Maintainer: Paul Brossier <piem@debian.org>
+Build-Depends: debhelper (>= 7.0.50~), pure-data | pd
+Standards-Version: 3.8.3
+Homepage: http://puredata.info
+
+Package: pd-ext13
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: a collection of externals for pd
+ this ist ext13, a collection of externals for pd
+ most of the code comes from other pd-object or externals
+ and is just modifyed.
+ you can use, copy modify, distribute... blahblah
+ there`s no warranty for anything.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..874bcf3
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,8 @@
+Copyright (c) 2009 IOhannes m. zmoelnig
+Copyright (c) 2003-2010 Free Software Foundation
+Copyright (c) 1997-2002 Dieter Kovacic
+Copyright (c) 2004 Tim Blechmann
+catch13~.c:/* Copyright (c) 1997-1999 Miller Puckette source modified by dieb13.
+receive13~.c:/* Copyright (c) 1997-1999 Miller Puckette source modified by dieb13.
+send13~.c:/* Copyright (c) 1997-1999 Miller Puckette source modified by dieb13.
+throw13~.c:/* Copyright (c) 1997-1999 Miller Puckette source modified by dieb13.
diff --git a/debian/dirs b/debian/dirs
new file mode 100644
index 0000000..30e50ef
--- /dev/null
+++ b/debian/dirs
@@ -0,0 +1,4 @@
+/usr/lib
+/usr/lib/pd
+/usr/lib/pd/extra
+/usr/lib/pd/extra/ext13
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..ded37b7
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+%:
+ dh $@
+
+override_dh_auto_install:
+ make DESTDIR=$(CURDIR)/debian/tmp pkglibdir=/usr/lib/pd install
+
+