wok-next diff libvdpau-va-gl/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libvdpau-va-gl/receipt	Tue Sep 01 10:31:46 2020 +0000
     1.3 @@ -0,0 +1,31 @@
     1.4 +# SliTaz package receipt v2.
     1.5 +
     1.6 +PACKAGE="libvdpau-va-gl"
     1.7 +VERSION="0.4.2"
     1.8 +CATEGORY="x-window"
     1.9 +SHORT_DESC="VDPAU driver with OpenGL/VAAPI backend"
    1.10 +MAINTAINER="al.bobylev@gmail.com"
    1.11 +LICENSE="MIT"
    1.12 +WEB_SITE="https://github.com/i-rinat/libvdpau-va-gl"
    1.13 +LFS="http://www.linuxfromscratch.org/blfs/view/svn/x/x7driver.html#libvdpau-va-gl"
    1.14 +
    1.15 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.16 +WGET_URL="https://github.com/i-rinat/libvdpau-va-gl/releases/download/v$VERSION/$TARBALL"
    1.17 +TARBALL_SHA1="a9ae1851a6f12312a98fc89d12bcb2de1f2af9c8"
    1.18 +
    1.19 +BUILD_DEPENDS="cmake libx11-dev libva-dev mesa-dev"
    1.20 +DEPENDS="libva libx11 mesa"
    1.21 +
    1.22 +compile_rules() {
    1.23 +	mkdir build
    1.24 +	cd    build
    1.25 +
    1.26 +	cmake \
    1.27 +		-DCMAKE_BUILD_TYPE=Release \
    1.28 +		-DCMAKE_INSTALL_PREFIX=/usr \
    1.29 +		.. &&
    1.30 +	make &&
    1.31 +	make install || return 1
    1.32 +
    1.33 +	install -Dm755 $stuff/xorg.sh $install/etc/profile.d/xorg.sh
    1.34 +}