blob: c2b1be603866f91c50510968e403419bbf3066ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
# Contributor: Łukasz Jendrysik <scadu@yandex.com>
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Contributor: Jakub Skrzypnik <j.skrzypnik@openmailbox.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=mpv
pkgver=0.31.0
pkgrel=0
pkgdesc="Video player based on MPlayer/mplayer2"
url="https://mpv.io/"
arch="all"
license="GPL-2.0-or-later"
makedepends="
alsa-lib-dev
pulseaudio-dev
cmocka-dev
faac-dev
ffmpeg-dev
freetype-dev
lame-dev
libao-dev
libass-dev
libcdio-paranoia-dev
libdvdnav-dev
libmad-dev
libtheora-dev
libva-dev>=2.4.1
libvdpau-dev
libxext-dev
libxinerama-dev
libxkbcommon-dev
libxrandr-dev
libxscrnsaver-dev
libxv-dev
libxvmc-dev
libxxf86dga-dev
lua5.2-dev
mesa-dev
perl
py3-docutils
python3
ttf-dejavu
wayland-dev
wayland-protocols
x264-dev
xvidcore-dev
zlib-dev
vulkan-headers
vulkan-loader-dev
shaderc-dev
libplacebo-dev
uchardet-dev
"
subpackages="
$pkgname-doc
$pkgname-libs
$pkgname-dev
$pkgname-zsh-completion:zshcomp:noarch
"
options="net" # downloads a waf tarball
source="mpv-$pkgver.tar.gz::https://github.com/mpv-player/mpv/archive/v$pkgver.tar.gz"
# secfixes:
# 0.27.0-r3:
# - CVE-2018-6360
prepare() {
default_prepare
python3 bootstrap.py
}
build() {
RST2HTML=rst2html-3 RST2MAN=rst2man-3 \
python3 waf configure --prefix=/usr \
--mandir=/usr/share/man \
--confdir=/etc/mpv \
--enable-alsa \
--enable-pulse \
--enable-libass \
--enable-libmpv-shared \
--enable-wayland \
--enable-lua \
--enable-test \
--enable-vulkan \
--enable-uchardet \
--enable-cdda \
--enable-dvdnav
python3 waf build
}
check() {
find build/test/ -perm -111 -exec '{}' ';'
}
package() {
python3 waf install --destdir="$pkgdir"
mkdir -p "$pkgdir"/usr/share/doc/$pkgname
install -m644 "$builddir"/DOCS/*.rst "$builddir"/DOCS/*.md \
"$pkgdir"/usr/share/doc/$pkgname/
# Move example configuration files to subdirectory
mkdir -p "$pkgdir"/usr/share/doc/mpv/examples
mv "$pkgdir"/usr/share/doc/mpv/*.conf \
"$pkgdir"/usr/share/doc/mpv/examples/
}
zshcomp() {
pkgdesc="Zsh completions for $pkgname"
install_if="$pkgname=$pkgver-r$pkgrel zsh"
mkdir -p "$subpkgdir/usr/share/zsh/site-functions"
mv "$pkgdir/usr/share/zsh/site-functions"/* \
"$subpkgdir/usr/share/zsh/site-functions"
}
sha512sums="5199183d35bc2d7fffde1af250edf829fe768cedd7aa00f424d2a11a11d82cdb451c62886159ba3e1efc407b242c25e2485f4ebffd13b1da9c70defbd1f4c309 mpv-0.31.0.tar.gz"
|