Skip to content

Commit

Permalink
initial packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
MestreLion committed Oct 5, 2012
1 parent 904d29c commit 3ce1ab9
Show file tree
Hide file tree
Showing 6 changed files with 107 additions and 0 deletions.
23 changes: 23 additions & 0 deletions debian/README.source
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
wavegain for Debian
-------------------

Pristine upstream archive downloaded from:
http://www.rarewares.org/files/others/wavegain-1.3.1srcs.zip

72180 bytes, 2011-12-19 07:00

MD5Sum:
456106bae00cec2ec4024da992bc5fd0

Given the zip format, it had to be repacked to a tar.gz tarball

Steps to reproduce the re-packaging:

$ version=1.3.1
$ wget "http://www.rarewares.org/files/others/wavegain-${version}srcs.zip"
$ unzip wavegain-${version}srcs.zip
$ mv WaveGain-${version} wavegain-${version}
$ tar -czf wavegain_${version}.orig.tar.gz wavegain-${version}

Result using tar (GNU tar) 1.26
2d0585e9442741a2796655ee6a74119e wavegain_1.3.1.orig.tar.gz # 65174 bytes
5 changes: 5 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
wavegain (1.3.1-1) unstable; urgency=low

* Initial release.

-- Rodrigo Silva <[email protected]> Fri, 05 Oct 2012 04:59:01 -0300
1 change: 1 addition & 0 deletions debian/compat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
8
31 changes: 31 additions & 0 deletions debian/control
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
Source: wavegain
Section: sound
Priority: extra
Maintainer: Rodrigo Silva <[email protected]>
Build-Depends: debhelper (>= 8.0.0)
Standards-Version: 3.9.3
Homepage: http://www.rarewares.org/others.php
Vcs-Git: git://github.com/MestreLion/wavegain.git
Vcs-Browser: https://github.com/MestreLion/wavegain

Package: wavegain
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Replaygain for wav audio files
WaveGain is an application of the ReplayGain algorithms to standard PCM wave
files. Calculated gain adjustments are applied directly to the audio data,
instead of just writing metadata as traditionally done for other formats
like MP3, FLAC and Ogg Vorbis.
.
Replaygain is a standard that allows compatible players to play audio files
with an adjusted volume gain so they have a consistent perceived loudness.
.
Loudness can be averaged either for each individual file, also called "Track"
or "Radio" mode, where every song is adjusted to the same standard loudness; or
by group, also called "Album" mode, where individual "songs" may sound louder
or quieter than others, but each "album" as a whole has the same average
loudness as other albums.
.
For more information,
<http://en.wikipedia.org/wiki/ReplayGain>
<http://wiki.hydrogenaudio.org/index.php?title=Replaygain>
34 changes: 34 additions & 0 deletions debian/copyright
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
Format: http://dep.debian.net/deps/dep5
Upstream-Name: wavegain
Source: http://www.rarewares.org/others.php
Files: *
Copyright: 2005 John Edwards <[email protected]>
License: LGPL-2.1+
This program 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.1 of the License, or (at your option) any later version.
.
This program 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.
.
On Debian systems, the complete text of the GNU Lesser General
Public License version 2.1 can be found in "/usr/share/common-licenses/LGPL-2.1".

Files: debian/*
Copyright: 2012 Rodrigo Silva <[email protected]>
License: GPL-3+
This program 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 3 of the License, or
(at your option) any later version.
.
This program 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 General Public License for more details.
.
On Debian systems, the complete text of the GNU General
Public License version 2 can be found in "/usr/share/common-licenses/GPL-3".
13 changes: 13 additions & 0 deletions debian/rules
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/usr/bin/make -f
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

%:
dh $@

override_dh_auto_install:
dh_auto_install -- prefix=/usr

override_dh_pysupport:

0 comments on commit 3ce1ab9

Please sign in to comment.