core/libdvbpsi/PKGBUILD
Jan Mette 93d9bd24fe
2010-03-14 15:48:48 +00:00

27 lines
755 B
Bash

# $Id: PKGBUILD 68055 2010-02-10 15:57:29Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Gilles CHAUVIN <gcnweb@gmail.com>
pkgname=libdvbpsi
pkgver=0.1.6
pkgrel=3
pkgdesc="MPEG TS and DVB PSI tables library (needed by vlc for streaming)"
arch=('i686' 'x86_64')
license=('GPL')
depends=('glibc')
options=('!libtool')
replaces=('libdvbpsi4' 'libdvbpsi5')
conflicts=('libdvbpsi4' 'libdvbpsi5')
url="http://developers.videolan.org/libdvbpsi/"
source=(http://download.videolan.org/pub/libdvbpsi/0.1.6/libdvbpsi5-$pkgver.tar.bz2)
md5sums=('bd2d9861be3311e1e03c91cd9345f542')
build()
{
cd "${srcdir}/libdvbpsi5-${pkgver}"
./configure --prefix=/usr
make || return 1
make prefix="${pkgdir}/usr" install || return 1
}