summaryrefslogtreecommitdiff
path: root/community/wavegain
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
committerroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
commit7a65a910b77ad191d69881098c47f9b0c852d92e (patch)
tree9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/wavegain
parent60da6abff6c9577a783d72865f11de7a585e912e (diff)
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/wavegain')
-rw-r--r--community/wavegain/PKGBUILD32
1 files changed, 32 insertions, 0 deletions
diff --git a/community/wavegain/PKGBUILD b/community/wavegain/PKGBUILD
new file mode 100644
index 000000000..183516e86
--- /dev/null
+++ b/community/wavegain/PKGBUILD
@@ -0,0 +1,32 @@
+# $Id: PKGBUILD 67386 2012-03-10 21:21:31Z lcarlier $
+# Maintainer: Ray Rashif <schiv@archlinux.org>
+# Contributor: Corrado Primier <bardo@aur.archlinux.org>
+
+pkgname=wavegain
+_realname=WaveGain
+pkgver=1.3.1
+pkgrel=1
+pkgdesc="A command line tool to normalize sound files"
+arch=('i686' 'x86_64')
+url="http://rarewares.org/others.php"
+license=('LGPL')
+depends=('libsndfile')
+source=(http://www.rarewares.org/files/others/$pkgname-${pkgver}srcs.zip)
+md5sums=('456106bae00cec2ec4024da992bc5fd0')
+
+build() {
+ cd "$srcdir/$_realname-$pkgver"
+
+ #make -f Makefile.linux
+ gcc ${LDFLAGS} ${CFLAGS} *.c -o wavegain -DHAVE_CONFIG_H -lm
+
+}
+
+package() {
+ cd "$srcdir/$_realname-$pkgver"
+
+ install -Dm755 "$srcdir/$_realname-$pkgver/wavegain" \
+ "$pkgdir/usr/bin/wavegain"
+}
+
+# vim:set ts=2 sw=2 et: