diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2010-08-24 15:14:29 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2010-08-24 15:14:29 +0000 |
commit | 2de094bfae5a48374d65f4c273c366b88af85c5b (patch) | |
tree | 1e2efa6f68c00a58036872daab00e3d66612b16f /debian | |
parent | 20b3e230bce680ec76404a359c67fe176bbf76e5 (diff) |
converted to library template and debianized
svn path=/trunk/externals/plugin~/; revision=13938
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 17 | ||||
-rw-r--r-- | debian/copyright | 24 | ||||
-rw-r--r-- | debian/gbp.conf | 7 | ||||
-rw-r--r-- | debian/links | 2 | ||||
-rwxr-xr-x | debian/rules | 18 | ||||
-rw-r--r-- | debian/source/format | 1 |
8 files changed, 75 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..44b23ff --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +pd-plugin (0.2.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..2b71906 --- /dev/null +++ b/debian/control @@ -0,0 +1,17 @@ +Source: pd-plugin +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-plugin +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, pd +Description: LADSPA and VST plug-in hosting for Pd + This is a Pd tilde object for hosting LADSPA audio plug-ins. The + LADSPA plug-in interface is supported completely. The object will + search your LADSPA path for plugins, which are loadable by name as an + argument to the plugin~ object. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..c00fdce --- /dev/null +++ b/debian/copyright @@ -0,0 +1,24 @@ +Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?rev=135 +Name: plugin~ +Debianized-By: Hans-Christoph Steiner <hans@eds.org> +Debianized-Date: Sat, 3 Apr 2010 17:14:25 -0400 + + +Files: jsearch.c jload.c jutils.h +Copyright: 2000, Richard W.E. Furse +License: Free software by Richard W.E. Furse. Do with as you will. No warranty. + + +Files: plugin~.[hc] README.txt plugin~*.pd ChangeLog SConstruct +Copyright: 2000, 2001, Jarno Seppänen <jams@cs.tut.fi> + 2005, Carmen Rocco + 2010, IOhannes m. zmoelnig +License: GPL-2+ + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU 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 General Public License + version 2 can be found in file "/usr/share/common-licenses/GPL-2". + diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..baae294 --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,7 @@ +[DEFAULT] +upstream-branch = upstream +debian-branch = master +upstream-tag = upstream/%(version)s +debian-tag = debian/%(version)s +pristine-tar = True + diff --git a/debian/links b/debian/links new file mode 100644 index 0000000..684aa6a --- /dev/null +++ b/debian/links @@ -0,0 +1,2 @@ +usr/lib/pd/extra/plugin~/README.txt usr/share/doc/pd-plugin/README +usr/share/common-licenses/GPL-2 usr/lib/pd/extra/plugin/LICENSE.txt diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..b2743ec --- /dev/null +++ b/debian/rules @@ -0,0 +1,18 @@ +#!/usr/bin/make -f + +LIBRARY_NAME = plugin~ +PACKAGE = pd-plugin +pkglibdir = /usr/lib/pd/extra + +%: + dh $@ + +override_dh_auto_install: + make DESTDIR=$(CURDIR)/debian/$(PACKAGE) pkglibdir=$(pkglibdir) install +# replace license file with link to the Debian license file + rm -f -- $(CURDIR)/debian/$(PACKAGE)/$(pkglibdir)/$(LIBRARY_NAME)/LICENSE.txt + +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) |