--- dbmeasure-20100309.orig/debian/docs +++ dbmeasure-20100309/debian/docs @@ -0,0 +1 @@ +README --- dbmeasure-20100309.orig/debian/rules +++ dbmeasure-20100309/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f +%: + dh --with quilt $@ + --- dbmeasure-20100309.orig/debian/dirs +++ dbmeasure-20100309/debian/dirs @@ -0,0 +1 @@ +usr/bin --- dbmeasure-20100309.orig/debian/README.source +++ dbmeasure-20100309/debian/README.source @@ -0,0 +1,2 @@ +Uses quilt for patch handling: +/usr/share/doc/quilt/README.source --- dbmeasure-20100309.orig/debian/control +++ dbmeasure-20100309/debian/control @@ -0,0 +1,16 @@ +Source: dbmeasure +Section: sound +Priority: extra +Maintainer: David Henningsson +Build-Depends: quilt, debhelper (>= 7.0.8), libasound2-dev, pkg-config +Standards-Version: 3.8.3 +Homepage: http://git.0pointer.de/?p=dbmeasure.git;a=summary + +Package: dbmeasure +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: ALSA Volume Control Attenuation Measurement Tool + This tool will help you to determine the volume scaling factors of your + sound card. It is used to debug invalid dB data in sound card hardware + or drivers. + --- dbmeasure-20100309.orig/debian/compat +++ dbmeasure-20100309/debian/compat @@ -0,0 +1 @@ +7 --- dbmeasure-20100309.orig/debian/changelog +++ dbmeasure-20100309/debian/changelog @@ -0,0 +1,13 @@ +dbmeasure (20100309-0ubuntu1~lucid~ubuntuaudiodev3) lucid; urgency=low + + * Version number change for lucid + * Fix some lintian warnings + + -- David Henningsson Wed, 10 Mar 2010 21:56:15 +0100 + +dbmeasure (20100309-0ubuntu1~karmic~ubuntuaudiodev2) karmic; urgency=low + + * Initial release. + * Makefile improved (added install/uninstall). + + -- David Henningsson Tue, 09 Mar 2010 08:30:14 +0100 --- dbmeasure-20100309.orig/debian/copyright +++ dbmeasure-20100309/debian/copyright @@ -0,0 +1,39 @@ +This package was debianized by David Henningsson on +Tue, 09 Mar 2010 08:30:14 +0100. + +It was downloaded from http://git.0pointer.de/?p=dbmeasure.git;a=summary + +Upstream Author: + + Lennart Poettering + +Copyright: + + Copyright (C) 2010 Lennart Poettering + +License: + + This package is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU Lesser General +Public License can be found in `/usr/share/common-licenses/LGPL-2'. + +The Debian packaging is: + + Copyright (C) 2010 David Henningsson + +and is licensed under the LGPL version 2, +see `/usr/share/common-licenses/LGPL-2'. + --- dbmeasure-20100309.orig/debian/patches/makeinstall.patch +++ dbmeasure-20100309/debian/patches/makeinstall.patch @@ -0,0 +1,24 @@ +--- a/Makefile ++++ b/Makefile +@@ -1,5 +1,6 @@ + CFLAGS=-Wextra -Wall -O0 -g -pipe `pkg-config --cflags alsa` + LIBS=`pkg-config --libs alsa` -lm ++BINDIR=/usr/bin + + all: dbmeasure dbverify + +@@ -9,5 +10,14 @@ + dbverify: dbverify.o + $(CC) -o dbverify $^ $(CFLAGS) $(LIBS) + ++install: all ++ install -d $(DESTDIR)$(BINDIR) ++ install -m 755 dbmeasure $(DESTDIR)$(BINDIR)/dbmeasure ++ install -m 755 dbverify $(DESTDIR)$(BINDIR)/dbverify ++ ++uninstall: ++ rm -f $(DESTDIR)$(BINDIR)/dbmeasure ++ rm -f $(DESTDIR)$(BINDIR)/dbverify ++ + clean: + rm -f *.o dbmeasure dbverify --- dbmeasure-20100309.orig/debian/patches/series +++ dbmeasure-20100309/debian/patches/series @@ -0,0 +1 @@ +makeinstall.patch