--- pymodplug-1.1.orig/debian/changelog +++ pymodplug-1.1/debian/changelog @@ -0,0 +1,13 @@ +pymodplug (1.1-2) unstable; urgency=low + + * Build-Dep on libmodplug-dev >= 1:0.7-5 for C++ ABI transition. + * Standards-Version 3.6.2. + * Update URL in debian/copyright to point to the Quod Libet Trac. + + -- Joe Wreschnig Sat, 10 Sep 2005 16:24:20 -0500 + +pymodplug (1.1-1) unstable; urgency=low + + * Initial packaging. (Closes: #292109) + + -- Joe Wreschnig Tue, 25 Jan 2005 15:17:16 -0600 --- pymodplug-1.1.orig/debian/control +++ pymodplug-1.1/debian/control @@ -0,0 +1,17 @@ +Source: pymodplug +Section: python +Priority: optional +Maintainer: Joe Wreschnig +Build-Depends: debhelper (>= 4.0.0), libmodplug-dev (>= 1:0.7-5), python-dev +Standards-Version: 3.6.2 + +Package: python-modplug +Architecture: any +Depends: ${shlibs:Depends}, ${python:Depends} +Description: ModPlug mod-like music shared libraries [Python bindings] + libmodplug is a library for decoding MODs and similar tracked formats. + It features high-quality audio output including noise reduction and + support for many MOD-like formats. + . + This package contains Python bindings for libmodplug, allowing programs + written in Python to read music in MOD, XM, IT, and other formats. --- pymodplug-1.1.orig/debian/compat +++ pymodplug-1.1/debian/compat @@ -0,0 +1 @@ +4 --- pymodplug-1.1.orig/debian/copyright +++ pymodplug-1.1/debian/copyright @@ -0,0 +1,15 @@ +This package was debianized by Joe Wreschnig on +Wed, 19 Jan 2005 20:12:11 -0600 + +It was downloaded from +http://www.sacredchao.net/quodlibet/wiki/Download + +Upstream Author: Joe Wreschnig + +Copyright: + +Copyright 2004 Joe Wreschnig. +Licensed under the GNU GPL version 2. + +On Debian systems the GNU GPL v2 can be found in +/usr/share/common-licenses/GPL-2. --- pymodplug-1.1.orig/debian/docs +++ pymodplug-1.1/debian/docs @@ -0,0 +1,2 @@ +README +playmod.py --- pymodplug-1.1.orig/debian/rules +++ pymodplug-1.1/debian/rules @@ -0,0 +1,55 @@ +#!/usr/bin/make -f +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +configure: configure-stamp +configure-stamp: + dh_testdir + touch configure-stamp + +build: build-stamp +build-stamp: configure-stamp + dh_testdir + $(MAKE) + touch build-stamp + +clean: + dh_testdir + dh_testroot + -$(MAKE) clean + rm -f build-stamp configure-stamp + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + ./setup.py install --prefix debian/python-modplug/usr + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_link + dh_strip + dh_compress + dh_fixperms + dh_python + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure