24 lines
615 B
Python
24 lines
615 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# Licensed under the GNU General Public License, version 3.
|
|
# See the file http://www.gnu.org/licenses/gpl.txt
|
|
|
|
|
|
from pisi.actionsapi import get
|
|
from pisi.actionsapi import mesontools
|
|
from pisi.actionsapi import pisitools
|
|
|
|
def setup():
|
|
mesontools.configure("-D gst-plugins-base:package-name='GStreamer VAAPI Plugins (Pisi Linux)' \
|
|
-Dpackage-origin='https://www.pisilinux.org'")
|
|
|
|
def build():
|
|
mesontools.build()
|
|
|
|
|
|
def install():
|
|
mesontools.install()
|
|
|
|
pisitools.dodoc("AUTHORS", "ChangeLog", "README*", "NEWS", "COPYING.LIB")
|