def install(): autotools.rawInstall("DESTDIR=%s install-man" % get.installDIR()) inarytools.dobin("tools/qt-faststart") inarytools.dodoc("Changelog", "README.md", "LICENSE.md", "COPYING*")
def install(): autotools.rawInstall("DESTDIR=%s" % get.installDIR()) inarytools.dodoc("COPYING", "ChangeLog", "README")
def install(): autotools.rawInstall("DESTDIR=%s" % get.installDIR()) if get.buildTYPE()=="emul32": return inarytools.remove("/usr/bin/2to3") inarytools.dodoc("LICENSE", "README*")
def install(): autotools.rawInstall("DESTDIR=%s" % get.installDIR()) inarytools.dodoc("AUTHORS", "ChangeLog", "CONTRIBUTORS", "COPYING", "COPYRIGHT", "README")
def install(): autotools.rawInstall("DESTDIR=%s" % get.installDIR()) inarytools.remove("/usr/lib/libquicktime.la") inarytools.dodoc("README", "TODO", "ChangeLog")
def install(): autotools.rawInstall('-j1 DESTDIR="%s"' % get.installDIR()) inarytools.insinto("/etc/mtools", "mtools.conf") inarytools.dodoc("COPYING", "README*", "Release.notes")
def install(): autotools.rawInstall("PREFIX=/%s DESTDIR=%s" % (get.defaultprefixDIR(), get.installDIR()))
def install(): autotools.rawInstall('DESTDIR="%s" libdir="/usr/lib" libexecdir="/usr/libexec"' % get.installDIR()) inarytools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README")
def install(): autotools.install("DESTDIR=%s" % get.installDIR())
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()))
def install(): shelltools.cd("src") autotools.rawInstall("ROOT='%s' STRIP=/bin/true" % get.installDIR()) inarytools.remove("/bin/pidof") inarytools.dosym("killall5", "/sbin/pidof")
def install(): autotools.rawInstall("DESTDIR=%s/" % get.installDIR()) inarytools.dodir("/var/lib/polkit-1")
def install(): cmaketools.rawInstall("DESTDIR={}".format(get.installDIR()))
def install(): autotools.rawInstall("DESTDIR={}".format(get.installDIR())) inarytools.dodoc("README", "NEWS", "COPYING", "ChangeLog", "RELEASE-NOTES")
def install(): autotools.rawInstall("DESTDIR=%s" % get.installDIR()) inarytools.dodoc("COPYING", "COPYING.LGPL", "NEWS", "README")
def install(): autotools.rawInstall("DESTDIR=%s" % get.installDIR()) inarytools.dodoc("README")
def install(): shelltools.system("CFLAGS=" " CXXFLAGS=" " LDFLAGS=" " make install DESTDIR={}".format(get.installDIR()))
def install(): autotools.rawInstall("DESTDIR=%s" % get.installDIR()) inarytools.dodoc("AUTHORS", "COPYING*", "NEWS", "README*")
def install(): autotools.rawInstall("DESTDIR=%s" % get.installDIR()) for f in ("affixcompress", "makealias", "wordforms"): inarytools.dobin("src/tools/%s" % f)
def install(): autotools.rawInstall('DESTDIR=%s INSTALL="install -p -c"' % get.installDIR())
def chmod(path, mode): shelltools.chmod("%s%s" % (get.installDIR(), path), mode)
def install(): autotools.rawInstall("DESTDIR={}".format(get.installDIR())) inarytools.dodoc("COPYING", "NEWS", "README")
def install(): autotools.rawInstall("DESTDIR=%s" % get.installDIR()) inarytools.dodoc("AUTHORS", "ChangeLog", "NEWS", "README")
def install(): autotools.rawInstall("DESTDIR=%s" % get.installDIR()) inarytools.dodoc("AUTHORS", "COPYING", "COPYING.LESSER", "README.md")
#!/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)
def install(): inarytools.makedirs("{}/usr/sbin/".format(get.installDIR())) autotools.rawInstall("DESTDIR={}".format(get.installDIR()))
def install(): autotools.rawInstall("-C build DESTDIR=%s" % get.installDIR())
def install(): autotools.rawInstall("DESTDIR=%s" % get.installDIR()) inarytools.removeDir("/usr/share/doc") inarytools.dohtml("doc/*") inarytools.dodoc("AUTHORS", "CHANGES", "README", "TODO")
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)
def install(): autotools.rawInstall("DESTDIR=%s" % get.installDIR()) inarytools.removeDir("/usr/lib/systemd")