PKGBUILDs/extra/xine-lib/PKGBUILD

56 lines
2.2 KiB
Bash
Raw Normal View History

2012-01-12 00:04:01 +00:00
# Maintainer: Eric Bélanger <eric@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - disabled vdpau
pkgname=xine-lib
2020-01-02 10:25:17 +00:00
pkgver=1.2.10
2020-04-07 00:13:06 +00:00
pkgrel=3
2020-03-27 01:22:13 +00:00
pkgdesc="Multimedia playback engine"
2017-12-10 04:48:40 +00:00
arch=('x86_64')
2019-10-31 12:36:32 +00:00
url="https://www.xine-project.org"
2012-01-12 00:04:01 +00:00
license=('LGPL' 'GPL')
2018-04-24 12:20:04 +00:00
depends=('libxvmc' 'ffmpeg' 'libxinerama' 'libnsl')
2019-10-31 12:36:32 +00:00
makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
2014-09-28 23:56:50 +00:00
'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad' 'libdvdnav'
2020-03-27 01:22:13 +00:00
'libmpcdec' 'libcaca' 'libbluray' 'glu' 'gdk-pixbuf2'
'dav1d')
2019-10-31 12:36:32 +00:00
optdepends=('imagemagick: for using the imagemagick plugin' \
2012-01-12 00:04:01 +00:00
'jack: for using the jack plugin' \
'vcdimager: for using the vcd plugin' \
2012-10-14 16:46:38 +00:00
'glu: for using the opengl plugin' \
2012-01-12 00:04:01 +00:00
'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' \
2018-04-24 12:20:04 +00:00
'libdvdnav: for using the dvd plugin' \
2012-01-12 00:04:01 +00:00
'libmpcdec: for using the musepack plugin' \
'libcaca: for using the caca plugin' \
'libbluray: for using the bluray plugin' \
2014-01-19 17:00:35 +00:00
'smbclient: for using the samba plugin' \
2020-03-27 01:22:13 +00:00
'dav1d: for using the dav1d decoder' \
2014-01-19 17:00:35 +00:00
'gdk-pixbuf2: for using the gdk-pixbuf plugin')
2020-01-02 10:25:17 +00:00
source=(https://downloads.sourceforge.net/project/xine/xine-lib/$pkgver/xine-lib-$pkgver.tar.xz)
2020-03-27 01:22:13 +00:00
sha512sums=('1cbe033da606d67a0a59f19968b2fe1cb46eaeb32c4b4aca7b91125b7230e15bd36d1e3e39e48e6eda56e556018f9f9bf84acb0012d3dd634306e7110fdc4c5f')
b2sums=('e1bc088814c951ff56e55b626fe1f6f34c3da744e716de369a68e6c82a5adc414b452675ad19a5f82500bade6795b54efd503de8ffe4f1e65b534317ca0a26af')
2012-01-12 00:04:01 +00:00
2013-05-30 06:00:52 +00:00
build() {
cd ${pkgname}-${pkgver}
2020-03-27 01:22:13 +00:00
./configure \
--prefix=/usr \
--with-wavpack \
--disable-vdpau \
--with-external-dvdnav
2019-04-19 23:56:55 +00:00
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
2012-01-12 00:04:01 +00:00
make
}
package() {
2013-05-30 06:00:52 +00:00
cd ${pkgname}-${pkgver}
2012-01-12 00:04:01 +00:00
make DESTDIR="${pkgdir}" install
}