47 lines
1.3 KiB
Python
47 lines
1.3 KiB
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 autotools
|
|
from pisi.actionsapi import pisitools
|
|
from pisi.actionsapi import shelltools
|
|
|
|
def setup():
|
|
autotools.autoreconf("-fi")
|
|
shelltools.cd("../")
|
|
shelltools.makedirs("gst-next")
|
|
shelltools.copy("gstreamer-vaapi-0.7.0/*", "gst-next")
|
|
shelltools.cd("gst-next")
|
|
autotools.aclocal()
|
|
autotools.configure("--prefix=/usr --disable-static")
|
|
|
|
shelltools.cd("../")
|
|
shelltools.cd("gstreamer-vaapi-0.7.0")
|
|
autotools.aclocal()
|
|
autotools.configure("--with-gstreamer-api=0.10")
|
|
|
|
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
|
|
|
|
def build():
|
|
shelltools.cd("../")
|
|
shelltools.cd("gst-next")
|
|
autotools.make()
|
|
|
|
shelltools.cd("../")
|
|
shelltools.cd("gstreamer-vaapi-0.7.0")
|
|
autotools.make()
|
|
|
|
def install():
|
|
shelltools.cd("../")
|
|
shelltools.cd("gst-next")
|
|
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
|
|
|
shelltools.cd("../")
|
|
shelltools.cd("gstreamer-vaapi-0.7.0")
|
|
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
|
|
|
pisitools.dodoc("AUTHORS", "COPYING*", "NEWS", "README")
|