Files
Bahar Kurt 419177b983 Initial package release for libva-nvidia-driver
Required with the proprietary drivers if KDE is in use and Spectacle
is desired to be used.

Do NOT make this a hard dependency for Spectacle since it conflicts
with the default vdpau-video.
2024-10-20 17:29:26 +03:00

21 lines
475 B
Python

#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/gpl.txt
from pisi.actionsapi import shelltools
from pisi.actionsapi import pisitools
from pisi.actionsapi import mesontools
def setup():
mesontools.configure()
def build():
mesontools.build()
def install():
shelltools.copy("COPYING", "LICENSE")
mesontools.install()
pisitools.dodoc("LICENSE", "README*")