mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 02:17:14 +08:00
31 lines
829 B
Bash
31 lines
829 B
Bash
# $Id: PKGBUILD 80128 2010-05-12 16:41:47Z andrea $
|
|
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
|
# Contributor: Gilles CHAUVIN <gcnweb@gmail.com>
|
|
|
|
pkgname=libdvbpsi
|
|
pkgver=0.2.2
|
|
pkgrel=1
|
|
pkgdesc="A library designed for decoding and generation of MPEG TS and DVB PSI tables"
|
|
arch=('i686' 'x86_64')
|
|
license=('LGPL')
|
|
depends=('glibc')
|
|
options=('!libtool')
|
|
replaces=('libdvbpsi4' 'libdvbpsi5')
|
|
conflicts=('libdvbpsi4' 'libdvbpsi5')
|
|
url="http://developers.videolan.org/libdvbpsi/"
|
|
source=("http://download.videolan.org/pub/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('b387e07ffd844b61c7a050c47307c0f7')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make prefix="${pkgdir}/usr" install || return 1
|
|
}
|
|
|