From c43710f172f6177f0d0eedd99c559290aa77b166 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Tue, 9 Feb 2010 18:07:22 +0000 Subject: updated to use new template Makefile+debian stuff svn path=/trunk/externals/motex/; revision=13150 --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 14 ++++++++++++++ debian/copyright | 14 ++++++++++++++ debian/rules | 15 +++++++++++++++ 5 files changed, 49 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 (limited to 'debian') diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..e53b13c --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +pd-motex (1.1.4-1.1) unstable; urgency=low + + * Initial release (Closes: #nnnn) + + -- Hans-Christoph Steiner 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..6b6a39a --- /dev/null +++ b/debian/control @@ -0,0 +1,14 @@ +Source: pd-motex +Section: sound +Priority: optional +Maintainer: Paul Brossier +Build-Depends: debhelper (>= 7.0.50~), pure-data | pd +Standards-Version: 3.8.3 +Homepage: http://puredata.info + +Package: pd-motex +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, pd +Description: Pd Externals by Iain Mott + A collection of externals from Iain Mott that mostly provide some + math functions. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..9dfdb75 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,14 @@ +Debianized-By: Hans-Christoph Steiner +Debianized-Date: Tue, 9 Feb 2010 17:14:25 -0400 +Original-Source: http://www.reverberant.com/pd/motex_1_1_3.tar.gz +Files: * +Copyright: Copyright 2001 Iain Mott + +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/rules b/debian/rules new file mode 100755 index 0000000..b60c274 --- /dev/null +++ b/debian/rules @@ -0,0 +1,15 @@ +#!/usr/bin/make -f + +LIBRARY_NAME = motex +PACKAGE = pd-$(LIBRARY_NAME) + +%: + dh $@ + +override_dh_auto_install: + make DESTDIR=$(CURDIR)/debian/$(PACKAGE) pkglibdir=/usr/lib/pd install + +override_dh_shlibdeps: + dpkg-shlibdeps $(CURDIR)/debian/$(PACKAGE)/usr/lib/pd/$(LIBRARY_NAME)/*.pd_linux \ + -T$(CURDIR)/debian/$(PACKAGE).substvars + -- cgit v1.2.1