Date: Friday, December 11, 2020 @ 16:42:32 Author: dbermond Revision: 773140
upgpkg: xine-lib 1.2.11-1 Modified: xine-lib/trunk/PKGBUILD ----------+ PKGBUILD | 89 ++++++++++++++++++++++++++++++------------------------------- 1 file changed, 44 insertions(+), 45 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2020-12-11 14:54:32 UTC (rev 773139) +++ PKGBUILD 2020-12-11 16:42:32 UTC (rev 773140) @@ -1,54 +1,53 @@ -# Maintainer: Eric Bélanger <[email protected]> +# Maintainer : Daniel Bermond <[email protected]> +# Contributor: Eric Bélanger <[email protected]> pkgname=xine-lib -pkgver=1.2.10 -pkgrel=5 -pkgdesc="Multimedia playback engine" +pkgver=1.2.11 +pkgrel=1 +pkgdesc='Multimedia playback engine' arch=('x86_64') -url="https://www.xine-project.org" -license=('LGPL' 'GPL') -depends=('libxvmc' 'ffmpeg' 'libxinerama' 'libnsl') -makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug' - 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad' 'libdvdnav' - 'libmpcdec' 'libcaca' 'libbluray' 'libvdpau' 'glu' 'gdk-pixbuf2' - 'dav1d') -optdepends=('imagemagick: for using the imagemagick plugin' \ - 'jack: for using the jack plugin' \ - 'vcdimager: for using the vcd plugin' \ - 'glu: for using the opengl plugin' \ - 'wavpack: for using the wavpack plugin' \ - 'faad2: for using the faad plugin' \ - 'libmng: for using the mng plugin' \ - 'aalib: for using the aalib plugin' \ - 'libmodplug: for using the modplug plugin' \ - 'libdca: for using the dca plugin' \ - 'a52dec: for using the a52 plugin' \ - 'libmad: for using the mp3 plugin' \ - 'libdvdnav: for using the dvd plugin' \ - 'libmpcdec: for using the musepack plugin' \ - 'libcaca: for using the caca plugin' \ - 'libbluray: for using the bluray plugin' \ - 'libvdpau: for using the VDPAU plugin' \ - 'smbclient: for using the samba plugin' \ - 'dav1d: for using the dav1d decoder' \ - 'gdk-pixbuf2: for using the gdk-pixbuf plugin') -source=(https://downloads.sourceforge.net/project/xine/xine-lib/$pkgver/xine-lib-$pkgver.tar.xz) -sha512sums=('1cbe033da606d67a0a59f19968b2fe1cb46eaeb32c4b4aca7b91125b7230e15bd36d1e3e39e48e6eda56e556018f9f9bf84acb0012d3dd634306e7110fdc4c5f') -b2sums=('e1bc088814c951ff56e55b626fe1f6f34c3da744e716de369a68e6c82a5adc414b452675ad19a5f82500bade6795b54efd503de8ffe4f1e65b534317ca0a26af') +url='https://www.xine-project.org' +license=('GPL' 'LGPL') +depends=('ffmpeg' 'libjpeg-turbo' 'libnsl' 'libpng' 'libx11' 'libxcb' + 'libxext' 'libxinerama' 'libxv' 'libxvmc' 'zlib') +optdepends=('libdvdnav: for dvd plugin' + 'libdvdread: for spu and dxr3 plugins' + 'vcdimager: for vcd plugin' + 'glu: for opengl and vaapi plugins' + 'sdl: for sdl plugin' + 'wayland: for egl_wl plugin' + 'aalib: for aalib plugin' + 'a52dec: for a52 plugin' + 'faad2: for faad plugin' + 'flac: for flac plugin' + 'libdca: for dts (dca) plugin' + 'libmad: for mad (mp3) plugin' + 'libmpcdec: for mpc (musepack) plugin' + 'wavpack: for wavpack plugin' + 'gdk-pixbuf2: for gdk_pixbuf plugin' + 'imagemagick: for imagemagick plugin' + 'libcaca: for caca plugin' + 'libmng: for mng plugin' + 'libnfs: for nfs plugin' + 'smbclient: for samba plugin') +makedepends=('mesa' 'libdvdnav' 'libdvdread' 'vcdimager' 'glu' 'sdl' + 'wayland' 'aalib' 'a52dec' 'faad2' 'flac' 'libdca' 'libmad' + 'libmpcdec' 'wavpack' 'gdk-pixbuf2' 'imagemagick' 'libcaca' + 'libmng' 'libnfs' 'smbclient') +source=("https://downloads.sourceforge.net/project/xine/xine-lib/${pkgver}/xine-lib-${pkgver}.tar.xz") +sha256sums=('ef51b21d10dda1045fa7d711bd9171cfdaf0a5a2874233bcf16ffdf28ec07005') build() { - cd ${pkgname}-${pkgver} - CFLAGS+=" -fcommon" - ./configure \ - --prefix=/usr \ - --with-wavpack \ - --enable-vdpau \ - --with-external-dvdnav - sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool - make + cd "${pkgname}-${pkgver}" + ./configure \ + --prefix='/usr' \ + --enable-antialiasing \ + --with-external-dvdnav \ + --with-wavpack + sed -i 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool + make } package() { - cd ${pkgname}-${pkgver} - make DESTDIR="${pkgdir}" install + make -C "${pkgname}-${pkgver}" DESTDIR="$pkgdir" install }
