summaryrefslogtreecommitdiffstats
path: root/extra/normalize
diff options
context:
space:
mode:
authorThierry N <thierryn1 at hispeed dot ch>2009-08-11 21:51:27 +0200
committerThierry N <thierryn1 at hispeed dot ch>2009-08-11 21:51:27 +0200
commitd692b72df78994a0a031008a8ee975b154a6e27f (patch)
tree1bb5a367ef1a6670e0886e50afbda62e4f1f4f10 /extra/normalize
parent91b6df2446fda9ef861db4fe501aa608c2495027 (diff)
downloadnutyx-pakxe-d692b72df78994a0a031008a8ee975b154a6e27f.tar.gz
nutyx-pakxe-d692b72df78994a0a031008a8ee975b154a6e27f.tar.bz2
nutyx-pakxe-d692b72df78994a0a031008a8ee975b154a6e27f.tar.xz
nutyx-pakxe-d692b72df78994a0a031008a8ee975b154a6e27f.zip
Ajout de normalize#0.7.7-1
Diffstat (limited to 'extra/normalize')
-rw-r--r--extra/normalize/.footprint14
-rw-r--r--extra/normalize/.md5sum1
-rw-r--r--extra/normalize/Pkgfile27
3 files changed, 42 insertions, 0 deletions
diff --git a/extra/normalize/.footprint b/extra/normalize/.footprint
new file mode 100644
index 000000000..a37f6eec6
--- /dev/null
+++ b/extra/normalize/.footprint
@@ -0,0 +1,14 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/normalize
+-rwxr-xr-x root/root usr/bin/normalize-mp3
+lrwxrwxrwx root/root usr/bin/normalize-ogg -> normalize-mp3
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/locale/
+drwxr-xr-x root/root usr/share/locale/fr/
+drwxr-xr-x root/root usr/share/locale/fr/LC_MESSAGES/
+-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/normalize.mo
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man1/
+-rw-r--r-- root/root usr/share/man/man1/normalize-mp3.1.gz
+-rw-r--r-- root/root usr/share/man/man1/normalize.1.gz
diff --git a/extra/normalize/.md5sum b/extra/normalize/.md5sum
new file mode 100644
index 000000000..8587cefc0
--- /dev/null
+++ b/extra/normalize/.md5sum
@@ -0,0 +1 @@
+1749b16fc7a08aa5d0cf9f76eeaa8436 normalize-0.7.7.tar.bz2
diff --git a/extra/normalize/Pkgfile b/extra/normalize/Pkgfile
new file mode 100644
index 000000000..f6e5ddeab
--- /dev/null
+++ b/extra/normalize/Pkgfile
@@ -0,0 +1,27 @@
+# Description: Permet d'ajuster le volume des fichiers WAV
+# URL: http://normalize.nongnu.org/
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on: audiofile, libmad
+
+name=normalize
+version=0.7.7
+release=1
+source=( http://download.savannah.gnu.org/releases/$name/$name-$version.tar.bz2)
+
+
+build() {
+ cd $name-$version
+ ./configure --prefix=/usr \
+ --mandir=/usr/share/man \
+ --with-audiofile \
+ --with-mad \
+ --infodir=/usr/share/info
+ make
+ make prefix=$PKG/usr \
+ mandir=$PKG/usr/share/man \
+ infodir=$PKG/usr/share/info \
+ libdir=$PKG/usr/lib \
+ sysconfdir=$PKG/etc install
+
+}