b8918e2a7d
+ Rename lua and lua-devel to lua52 and lua52-devel + Modify packages depending on lua52 accordingly: + Many packages auto-detect lua52 files + Some packages need hints where / how to find lua52 + One package (xmoto) downgraded to lua51, because it wouldn't find lua52 + One package (vim) upgraded to lua (5.3.1) There may be more packages upgradable without problems. I didn't want to change too much in this move without the respective package maintainers first taking a look. Most notably conky-cli wouldn't work with lua52. I upgraded it to 1.10.0 (same as conky) and tried to keep the flags the same for the change from gnu-configure to cmake.
37 lines
1.3 KiB
Bash
37 lines
1.3 KiB
Bash
# Template file for 'mpv'
|
|
pkgname=mpv
|
|
version=0.11.0
|
|
revision=2
|
|
short_desc="Video player based on MPlayer/mplayer2"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="GPL-2"
|
|
homepage="http://mpv.io"
|
|
build_style=waf
|
|
configure_args="--confdir=/etc/mpv --docdir=/usr/share/examples/mpv
|
|
--enable-cdda --enable-libmpv-shared --disable-oss-audio --disable-sdl2"
|
|
hostmakedepends="pkg-config python-docutils perl"
|
|
makedepends="
|
|
ffmpeg-devel libass-devel lcms2-devel libXinerama-devel lua52-devel v4l-utils-devel
|
|
libXv-devel libxkbcommon-devel libva-glx-devel libvdpau-devel alsa-lib-devel
|
|
pulseaudio-devel libbluray-devel libcdio-paranoia-devel libdvdread-devel
|
|
MesaLib-devel harfbuzz-devel libXScrnSaver-devel jack-devel libdvdnav-devel
|
|
wayland-devel libuuid-devel libguess-devel libXrandr-devel samba-devel"
|
|
depends="desktop-file-utils hicolor-icon-theme"
|
|
conf_files="/etc/mpv/encoding-profiles.conf"
|
|
distfiles="https://github.com/mpv-player/${pkgname}/archive/v${version}.tar.gz"
|
|
checksum=a2157174e46db46dad5deb1fde94283e72ebe922fd15447cb16a2a243fae5bda
|
|
|
|
pre_configure() {
|
|
python bootstrap.py
|
|
sed -i 's,/usr/local/etc/mpv.conf,/etc/mpv/mpv.conf,' etc/example.conf
|
|
}
|
|
|
|
mpv-devel_package() {
|
|
depends="mpv>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|