27 lines
880 B
Plaintext
27 lines
880 B
Plaintext
# Description: General Purpose video player based on MPlayer and mplayer2
|
|
# URL: https://mpv.io/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: ffmpeg libass libplacebo util-linux xorg-libxscrnsaver
|
|
# Optional: docutils youtube-dl libquvi libdvdnav libbluray libcdio-paranoia libsdl2 libvdpau rubberband xorg-libxpresent
|
|
|
|
name=mpv
|
|
version=0.35.0
|
|
release=1
|
|
source=(https://github.com/mpv-player/mpv/archive/v$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
prt-get isinst libdvdnav && PKGMK_MPV="-D dvdnav=enabled"
|
|
prt-get isinst libcdio-paranoia && PKGMK_MPV+=" -D cdda=enabled"
|
|
prt-get isinst libsdl2 && PKGMK_MPV+=" -D sdl2=enabled"
|
|
|
|
meson setup $name-$version build $PKGMK_MPV \
|
|
--prefix=/usr \
|
|
--buildtype=plain \
|
|
--wrap-mode nodownload \
|
|
-D b_lto=true \
|
|
-D b_pie=true
|
|
|
|
meson compile -C build
|
|
DESTDIR=$PKG meson install -C build
|
|
}
|