blob: e8d08296121ef03e9aa85959a9075fe209612bba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# $Id: PKGBUILD 49817 2009-08-16 16:08:10Z jgc $
# Maintainer: Kevin Piche <kevin@archlinux.org>
# Contributor: Ewoud Nuyts <ewoud.nuyts@gmail.com>
pkgname=bmp-wma
pkgver=0.1.1
pkgrel=3
pkgdesc="WMA plugin for Beep Media Player"
url="http://bmp-plugins.berlios.de/novelian/project.php?p=bmp-wma"
license=('GPL')
arch=('x86_64' 'i686' 'mips64el')
depends=('bmp')
groups=('bmp-plugins' 'bmp-io-plugins')
options=(!libtool !emptydirs)
source=(http://download.berlios.de/bmp-plugins/${pkgname}-${pkgver}.tar.gz
bmp-wma-gcc4.patch)
md5sums=('8dcf3fcdb10e8e2e386f70745812412b'
'730eba8f41e989dd8b56c18bcc826cc4')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
patch -Np0 -i "${srcdir}/bmp-wma-gcc4.patch" || return 1
if [ "${CARCH}" = "x86_64" ]; then
export CFLAGS="${CFLAGS} -fPIC"
fi
./configure --prefix=/usr --disable-static || return 1
echo '#define HAVE_LRINTF 1' >> config.h
make || return 1
make DESTDIR="${pkgdir}" install || return 1
}
|