Files
main/multimedia/video/libv4l/actions.py
T
2018-08-06 18:49:50 +03:00

37 lines
951 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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
#autotools.autoreconf("-vfi")
options = "--disable-static \
--disable-rpath \
"
if get.buildTYPE() == "emul32":
options += "--disable-qv4l2"
autotools.configure(options)
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
if get.buildTYPE() == "emul32": return
pisitools.dodoc("ChangeLog", "COPYING*", "README*", "TODO")
pisitools.insinto("/%s/%s/" % (get.docDIR(), get.srcNAME()), "contrib")