Files
2023-11-04 17:23:52 +03:00

26 lines
706 B
Python

#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import shelltools, autotools, pisitools, get
def setup():
# pisitools.dosed("doc/apireference.rst", "api", deleteLine = True)
autotools.autoreconf("-vif")
autotools.configure("--disable-static")
def build():
autotools.make()
# doc compilation.
# shelltools.cd("doc")
# autotools.make("man")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
# doc installation.
# pisitools.doman("doc/_build/man/*")
#shelltools.copytree("doc/_build/html", "%s/usr/share/vapoursynth/html" % get.installDIR())