コード例 #1
0
ファイル: actions.py プロジェクト: paledega/SulinRepository
def install():
    autotools.rawInstall("DESTDIR=%s install-man" % get.installDIR())
    inarytools.dobin("tools/qt-faststart")
    inarytools.dodoc("Changelog", "README.md", "LICENSE.md", "COPYING*")
コード例 #2
0
ファイル: actions.py プロジェクト: paledega/SulinRepository
def install():
    autotools.rawInstall("DESTDIR=%s" % get.installDIR())
    inarytools.dodoc("COPYING", "ChangeLog", "README")
コード例 #3
0
ファイル: actions.py プロジェクト: Zaryob/SulinRepository
def install():
    autotools.rawInstall("DESTDIR=%s" % get.installDIR())
    if get.buildTYPE()=="emul32":
        return
    inarytools.remove("/usr/bin/2to3")
    inarytools.dodoc("LICENSE", "README*")
コード例 #4
0
ファイル: actions.py プロジェクト: paledega/SulinRepository
def install():
    autotools.rawInstall("DESTDIR=%s" % get.installDIR())

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

    inarytools.dodoc("README", "TODO", "ChangeLog")
コード例 #6
0
ファイル: actions.py プロジェクト: paledega/SulinRepository
def install():
    autotools.rawInstall('-j1 DESTDIR="%s"' % get.installDIR())

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

    inarytools.dodoc("COPYING", "README*", "Release.notes")
コード例 #7
0
def install():
    autotools.rawInstall("PREFIX=/%s DESTDIR=%s" %
                         (get.defaultprefixDIR(), get.installDIR()))
コード例 #8
0
ファイル: actions.py プロジェクト: sulincix/SulinRepository
def install():
    autotools.rawInstall('DESTDIR="%s" libdir="/usr/lib" libexecdir="/usr/libexec"' % get.installDIR())
    
    inarytools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README")
コード例 #9
0
def install():
    autotools.install("DESTDIR=%s" % get.installDIR())
コード例 #10
0
ファイル: actions.py プロジェクト: Zaryob/SulinRepository
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()))
コード例 #11
0
ファイル: actions.py プロジェクト: paledega/SulinRepository
def install():
    shelltools.cd("src")
    autotools.rawInstall("ROOT='%s' STRIP=/bin/true" % get.installDIR())

    inarytools.remove("/bin/pidof")
    inarytools.dosym("killall5", "/sbin/pidof")
コード例 #12
0
def install():
    autotools.rawInstall("DESTDIR=%s/" % get.installDIR())
    inarytools.dodir("/var/lib/polkit-1")
コード例 #13
0
ファイル: actions.py プロジェクト: Zaryob/SulinRepository
def install():
    cmaketools.rawInstall("DESTDIR={}".format(get.installDIR()))
コード例 #14
0
ファイル: actions.py プロジェクト: Zaryob/SulinRepository
def install():
    autotools.rawInstall("DESTDIR={}".format(get.installDIR()))

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

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

    inarytools.dodoc("README")
コード例 #17
0
ファイル: actions.py プロジェクト: Zaryob/SulinRepository
def install():
    shelltools.system("CFLAGS="
                      " CXXFLAGS="
                      " LDFLAGS="
                      " make install DESTDIR={}".format(get.installDIR()))
コード例 #18
0
ファイル: actions.py プロジェクト: sulincix/SulinRepository
def install():
    autotools.rawInstall("DESTDIR=%s" % get.installDIR())

    inarytools.dodoc("AUTHORS", "COPYING*", "NEWS", "README*")
コード例 #19
0
ファイル: actions.py プロジェクト: paledega/SulinRepository
def install():
    autotools.rawInstall("DESTDIR=%s" % get.installDIR())
    for f in ("affixcompress", "makealias", "wordforms"):
        inarytools.dobin("src/tools/%s" % f)
コード例 #20
0
def install():
    autotools.rawInstall('DESTDIR=%s INSTALL="install -p -c"' %
                         get.installDIR())
コード例 #21
0
 def chmod(path, mode):
     shelltools.chmod("%s%s" % (get.installDIR(), path), mode)
コード例 #22
0
ファイル: actions.py プロジェクト: Zaryob/SulinRepository
def install():
    autotools.rawInstall("DESTDIR={}".format(get.installDIR()))

    inarytools.dodoc("COPYING", "NEWS", "README")
コード例 #23
0
ファイル: actions.py プロジェクト: paledega/SulinRepository
def install():
    autotools.rawInstall("DESTDIR=%s" % get.installDIR())

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

    inarytools.dodoc("AUTHORS", "COPYING", "COPYING.LESSER", "README.md")
コード例 #25
0
ファイル: actions.py プロジェクト: Zaryob/SulinRepository
#!/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)

コード例 #26
0
ファイル: actions.py プロジェクト: Zaryob/SulinRepository
def install():
    inarytools.makedirs("{}/usr/sbin/".format(get.installDIR()))
    autotools.rawInstall("DESTDIR={}".format(get.installDIR()))
コード例 #27
0
ファイル: actions.py プロジェクト: sulincix/SulinRepository
def install():
    autotools.rawInstall("-C build DESTDIR=%s" % get.installDIR())
コード例 #28
0
def install():
    autotools.rawInstall("DESTDIR=%s" % get.installDIR())
    inarytools.removeDir("/usr/share/doc")

    inarytools.dohtml("doc/*")
    inarytools.dodoc("AUTHORS", "CHANGES", "README", "TODO")
コード例 #29
0
ファイル: actions.py プロジェクト: paledega/SulinRepository
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)
コード例 #30
0
def install():
    autotools.rawInstall("DESTDIR=%s" % get.installDIR())
    inarytools.removeDir("/usr/lib/systemd")