Example #1
0
def install():
    autotools.rawInstall("DESTDIR=%s install-man" % get.installDIR())
    inarytools.dobin("tools/qt-faststart")
    inarytools.dodoc("Changelog", "README.md", "LICENSE.md", "COPYING*")
Example #2
0
def install():
    autotools.rawInstall("DESTDIR=%s" % get.installDIR())
    inarytools.dodoc("COPYING", "ChangeLog", "README")
Example #3
0
def install():
    autotools.rawInstall("DESTDIR=%s" % get.installDIR())
    if get.buildTYPE()=="emul32":
        return
    inarytools.remove("/usr/bin/2to3")
    inarytools.dodoc("LICENSE", "README*")
Example #4
0
def install():
    autotools.rawInstall("DESTDIR=%s" % get.installDIR())

    inarytools.dodoc("AUTHORS", "ChangeLog", "CONTRIBUTORS", "COPYING", "COPYRIGHT", "README")
Example #5
0
def install():
    autotools.rawInstall("DESTDIR=%s" % get.installDIR())
    inarytools.remove("/usr/lib/libquicktime.la")

    inarytools.dodoc("README", "TODO", "ChangeLog")
Example #6
0
def install():
    autotools.rawInstall('-j1 DESTDIR="%s"' % get.installDIR())

    inarytools.insinto("/etc/mtools", "mtools.conf")

    inarytools.dodoc("COPYING", "README*", "Release.notes")
Example #7
0
def install():
    autotools.rawInstall("PREFIX=/%s DESTDIR=%s" %
                         (get.defaultprefixDIR(), get.installDIR()))
Example #8
0
def install():
    autotools.rawInstall('DESTDIR="%s" libdir="/usr/lib" libexecdir="/usr/libexec"' % get.installDIR())
    
    inarytools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README")
Example #9
0
def install():
    autotools.install("DESTDIR=%s" % get.installDIR())
Example #10
0
def install():
    mesontools.ninja_install()
    if get.buildTYPE()=="emul32":
        shelltools.system("mkdir -p {}/usr/lib32".format(get.installDIR()))
        shelltools.system("mv {0}/usr/lib*.so* {0}/usr/lib32/".format(get.installDIR()))
        shelltools.system("mv {0}/usr/pkgconfig {0}/usr/lib32/".format(get.installDIR()))
Example #11
0
def install():
    shelltools.cd("src")
    autotools.rawInstall("ROOT='%s' STRIP=/bin/true" % get.installDIR())

    inarytools.remove("/bin/pidof")
    inarytools.dosym("killall5", "/sbin/pidof")
Example #12
0
def install():
    autotools.rawInstall("DESTDIR=%s/" % get.installDIR())
    inarytools.dodir("/var/lib/polkit-1")
Example #13
0
def install():
    cmaketools.rawInstall("DESTDIR={}".format(get.installDIR()))
Example #14
0
def install():
    autotools.rawInstall("DESTDIR={}".format(get.installDIR()))

    inarytools.dodoc("README", "NEWS", "COPYING", "ChangeLog", "RELEASE-NOTES")
Example #15
0
def install():
    autotools.rawInstall("DESTDIR=%s" % get.installDIR())

    inarytools.dodoc("COPYING", "COPYING.LGPL", "NEWS", "README")
Example #16
0
def install():
    autotools.rawInstall("DESTDIR=%s" % get.installDIR())

    inarytools.dodoc("README")
Example #17
0
def install():
    shelltools.system("CFLAGS="
                      " CXXFLAGS="
                      " LDFLAGS="
                      " make install DESTDIR={}".format(get.installDIR()))
Example #18
0
def install():
    autotools.rawInstall("DESTDIR=%s" % get.installDIR())

    inarytools.dodoc("AUTHORS", "COPYING*", "NEWS", "README*")
Example #19
0
def install():
    autotools.rawInstall("DESTDIR=%s" % get.installDIR())
    for f in ("affixcompress", "makealias", "wordforms"):
        inarytools.dobin("src/tools/%s" % f)
Example #20
0
def install():
    autotools.rawInstall('DESTDIR=%s INSTALL="install -p -c"' %
                         get.installDIR())
Example #21
0
 def chmod(path, mode):
     shelltools.chmod("%s%s" % (get.installDIR(), path), mode)
Example #22
0
def install():
    autotools.rawInstall("DESTDIR={}".format(get.installDIR()))

    inarytools.dodoc("COPYING", "NEWS", "README")
Example #23
0
def install():
    autotools.rawInstall("DESTDIR=%s" % get.installDIR())

    inarytools.dodoc("AUTHORS", "ChangeLog", "NEWS", "README")
Example #24
0
def install():
    autotools.rawInstall("DESTDIR=%s" % get.installDIR())

    inarytools.dodoc("AUTHORS", "COPYING", "COPYING.LESSER", "README.md")
Example #25
0
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/gpl.txt.

from inary.actionsapi import autotools
from inary.actionsapi import inarytools
from inary.actionsapi import shelltools
from inary.actionsapi import get

WorkDir = "."

ZoneDir = "/usr/share/zoneinfo"
TargetDir = "%s%s" % (get.installDIR(), ZoneDir)

RightDir = "%s/right" % TargetDir
PosixDir = "%s/posix" % TargetDir


timezones = ["etcetera", "southamerica", "northamerica", "europe", "africa", "antarctica", \
             "asia", "australasia", "factory", "backward", "pacificnew", \
             "systemv" ]


def setup():
    inarytools.dodir(ZoneDir)
    inarytools.dodir(RightDir)
    inarytools.dodir(PosixDir)

Example #26
0
def install():
    inarytools.makedirs("{}/usr/sbin/".format(get.installDIR()))
    autotools.rawInstall("DESTDIR={}".format(get.installDIR()))
Example #27
0
def install():
    autotools.rawInstall("-C build DESTDIR=%s" % get.installDIR())
Example #28
0
def install():
    autotools.rawInstall("DESTDIR=%s" % get.installDIR())
    inarytools.removeDir("/usr/share/doc")

    inarytools.dohtml("doc/*")
    inarytools.dodoc("AUTHORS", "CHANGES", "README", "TODO")
Example #29
0
def install():
    qt.install("INSTALL_ROOT=%s install_docs" % get.installDIR())

    #I hope qtchooser will manage this issue
    for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
        inarytools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
Example #30
0
def install():
    autotools.rawInstall("DESTDIR=%s" % get.installDIR())
    inarytools.removeDir("/usr/lib/systemd")