aboutsummaryrefslogtreecommitdiffstats
path: root/community/mpv/APKBUILD
blob: 8abd1f314097939326db3c39002d89156e5a2ed9 (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
118
119
120
121
122
123
124
125
126
# 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.32.0
pkgrel=3
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
	jack-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-bash-completion:bashcomp:noarch
	$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-jack \
		--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/
}

# NOTE(maxice8): Remove these 2 functions once the default functions as defined
# in https://gitlab.alpinelinux.org/alpine/abuild/merge_requests/16 are merged
bashcomp() {
	pkgdesc="Bash completions for $pkgname"
	install_if="$pkgname=$pkgver-r$pkgrel bash-completion"
	amove usr/share/bash-completion
}

zshcomp() {
	pkgdesc="Zsh completions for $pkgname"
	install_if="$pkgname=$pkgver-r$pkgrel zsh"

	amove usr/share/zsh/site-functions
}

sha512sums="f6426c0254ec0bf2f120e2196904f1e15fe17032b06764abca1d5e074f0cabb452eaf1cd09f8fd9b25b591accee7b881bfc3b06c19d5c98980305c4712486bd6  mpv-0.32.0.tar.gz"