contrib/mpv/Pkgfile

35 lines
1.2 KiB
Plaintext
Raw Normal View History

2013-08-19 20:26:13 +02:00
# Description: General Purpose video player based on MPlayer and mplayer2
# URL: https://mpv.io/
2023-03-05 23:22:42 -05:00
# Maintainer: John McQuah, jmcquah at disroot dot org
2019-12-01 12:39:02 +11:00
# Depends on: ffmpeg libass libplacebo util-linux xorg-libxscrnsaver
2023-07-16 07:54:13 -04:00
# Optional: libdvdnav libbluray libcdio-paranoia libsdl2 libvdpau pipewire pulseaudio sndio rubberband xorg-libxpresent
2013-08-19 20:26:13 +02:00
name=mpv
2024-05-03 14:53:16 +00:00
version=0.38.0
2023-07-25 14:37:04 -04:00
release=1
source=(https://github.com/mpv-player/mpv/archive/v$version/$name-$version.tar.gz)
2013-08-19 20:26:13 +02:00
2016-06-10 12:02:55 +03:00
build() {
2022-11-04 05:39:45 +00:00
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"
2023-07-16 07:54:13 -04:00
[ -e /usr/lib/libsndio.so ] && PKGMK_MPV+=" -D sndio=enabled"
2022-11-04 05:39:45 +00:00
2024-05-03 14:53:16 +00:00
# PR12941 (unbreak build without X11 and Wayland)
# sed -e "/features.'wayland'. or features.'x11'./s/$/ or features['drm']/" \
# -i $name-$version/meson.build
2023-07-25 14:37:04 -04:00
meson setup $name-$version build $PKGMK_MPV \
--prefix=/usr \
--buildtype=plain \
--wrap-mode nodownload \
-D b_lto=true \
-D b_pie=true
2013-08-19 20:26:13 +02:00
2023-07-16 07:54:13 -04:00
ninja -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
2023-03-05 23:22:42 -05:00
prt-get isinst bash-completion || rm -rf $PKG/usr/share/bash-completion
prt-get isinst zsh || rm -rf $PKG/usr/share/zsh
2013-08-19 20:26:13 +02:00
}