35 lines
1.2 KiB
Plaintext
35 lines
1.2 KiB
Plaintext
# Description: General Purpose video player based on MPlayer and mplayer2
|
|
# URL: https://mpv.io/
|
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
|
# Depends on: ffmpeg libass libplacebo util-linux xorg-libxscrnsaver
|
|
# Optional: libdvdnav libbluray libcdio-paranoia libsdl2 libvdpau pipewire pulseaudio sndio rubberband xorg-libxpresent
|
|
|
|
name=mpv
|
|
version=0.38.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"
|
|
[ -e /usr/lib/libsndio.so ] && PKGMK_MPV+=" -D sndio=enabled"
|
|
|
|
# PR12941 (unbreak build without X11 and Wayland)
|
|
# sed -e "/features.'wayland'. or features.'x11'./s/$/ or features['drm']/" \
|
|
# -i $name-$version/meson.build
|
|
|
|
meson setup $name-$version build $PKGMK_MPV \
|
|
--prefix=/usr \
|
|
--buildtype=plain \
|
|
--wrap-mode nodownload \
|
|
-D b_lto=true \
|
|
-D b_pie=true
|
|
|
|
ninja -C build -j ${JOBS:-1}
|
|
DESTDIR=$PKG meson install -C build
|
|
|
|
prt-get isinst bash-completion || rm -rf $PKG/usr/share/bash-completion
|
|
prt-get isinst zsh || rm -rf $PKG/usr/share/zsh
|
|
}
|