Date: Thursday, March 22, 2018 @ 00:07:16 Author: anthraxx Revision: 319790
upgpkg: libdvbpsi 1:1.3.2-1 Modified: libdvbpsi/trunk/PKGBUILD ----------+ PKGBUILD | 32 ++++++++++++++++++-------------- 1 file changed, 18 insertions(+), 14 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2018-03-22 00:04:42 UTC (rev 319789) +++ PKGBUILD 2018-03-22 00:07:16 UTC (rev 319790) @@ -1,30 +1,34 @@ -# $Id$ -# Maintainer: Giovanni Scafora <[email protected]> +# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org> +# Contributor: Giovanni Scafora <[email protected]> # Contributor: Gilles CHAUVIN <[email protected]> pkgname=libdvbpsi -pkgver=1.3.1 +pkgver=1.3.2 pkgrel=1 epoch=1 -pkgdesc="A library designed for decoding and generation of MPEG TS and DVB PSI tables" +pkgdesc='Library designed for decoding and generation of MPEG TS and DVB PSI tables' +url='http://developers.videolan.org/libdvbpsi/' arch=('x86_64') license=('LGPL2.1') depends=('glibc') -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=('4e525af846c50742a1d3945b5d31f0a2') +provides=('libdvbpsi.so') +source=(${pkgname}-${pkgver}.tar.bz2::https://code.videolan.org/videolan/libdvbpsi/repository/${pkgver}/archive.tar.bz2) +sha512sums=('598a671059f8d1ffe19c695972a07bf438cc8a340d7f3d00745b9c55be767acb6848a26b9af4918aa9652db76ae32c3ffdacad860259ae2092ffb8b48203e6b3') +prepare() { + cd ${pkgname}-${pkgver}-* + autoreconf -fiv +} + build() { - cd ${pkgname}-${pkgver} - + cd ${pkgname}-${pkgver}-* ./configure --prefix=/usr make } package() { - cd ${pkgname}-${pkgver} + cd ${pkgname}-${pkgver}-* + make DESTDIR="${pkgdir}" install +} - make prefix="${pkgdir}/usr" install -} +# vim: ts=2 sw=2 et:
