mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
25 lines
683 B
Bash
25 lines
683 B
Bash
# Maintainer: Eric Belanger <belanger@astro.umontreal.ca>
|
|
# Contributor: forest76 <forestt@poczta.onet.pl>
|
|
|
|
pkgname=xmms-volnorm
|
|
pkgver=0.8.3
|
|
pkgrel=3.1
|
|
pkgdesc="A XMMS plug-in to normalize the volume"
|
|
arch=('i686' 'x86_64')
|
|
url="http://volnorm.sourceforge.net/"
|
|
license=("GPL")
|
|
options=('!libtool')
|
|
depends=('glibc' 'xmms')
|
|
groups=('xmms-plugins' 'xmms-effect-plugins')
|
|
source=(http://downloads.sourceforge.net/volnorm/volnorm-$pkgver.tar.gz)
|
|
md5sums=('369e6b814143a94ff4d6666734e6af9a')
|
|
|
|
build() {
|
|
cd $startdir/src/volnorm-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
|
|
# removing useless executables
|
|
rm -r $startdir/pkg/usr/bin
|
|
}
|