419177b983
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.
21 lines
475 B
Python
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*")
|