60 lines
2.3 KiB
Python
60 lines
2.3 KiB
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# Licensed under the GNU General Public License, version 3.
|
|
# See the file http://www.gnu.org/licenses/gpl.txt
|
|
|
|
from pisi.actionsapi import get
|
|
from pisi.actionsapi import autotools
|
|
from pisi.actionsapi import pisitools
|
|
from pisi.actionsapi import shelltools
|
|
|
|
LOGO_FILE = "/usr/share/pixmaps/plymouth-pisilinux.png"
|
|
THEMEPATH = "/usr/share/plymouth/themes"
|
|
|
|
def setup():
|
|
pisitools.ldflags.add(" -ludev ")
|
|
# /var/run => /run
|
|
pisitools.dosed("configure.ac", "^(\s+plymouthruntimedir=)\$localstatedir(\/run\/plymouth)", r"\1\2")
|
|
pisitools.dosed("src/Makefile.am", "^(plymouthdrundir\s=\s)\$\(localstatedir\)(\/run\/plymouth)", r"\1\2")
|
|
|
|
autotools.autoreconf("-fis")
|
|
|
|
# The end-start colors seems to be used by the two-step plugin
|
|
# Disable nouveau drm renderer as it causes hangs when starting X server
|
|
autotools.configure("--enable-tracing \
|
|
--with-logo=%s \
|
|
--with-release-file=/etc/pisilinux-release \
|
|
--with-background-color=0x000000 \
|
|
--with-background-end-color-stop=0x000000 \
|
|
--with-background-start-color-stop=0x000000 \
|
|
--with-system-root-install \
|
|
--with-boot-tty=/dev/tty7 \
|
|
--with-shutdown-tty=/dev/tty1 \
|
|
--with-log-viewer \
|
|
--disable-libdrm_nouveau \
|
|
--disable-systemd-integration \
|
|
--disable-tests \
|
|
--disable-static \
|
|
--enable-gdm-transition \
|
|
--without-rhgb-compat-link" % LOGO_FILE)
|
|
|
|
def build():
|
|
autotools.make()
|
|
|
|
def install():
|
|
autotools.rawInstall("DESTDIR='%s'" % get.installDIR())
|
|
|
|
# Copy necessary files for Charge theme
|
|
pisitools.dodir("%s/charge" % THEMEPATH)
|
|
for f in ("box", "bullet", "entry", "lock"):
|
|
shelltools.copy("%s%s/glow/%s.png" % (get.installDIR(), THEMEPATH, f), "%s%s/charge/" % (get.installDIR(), THEMEPATH))
|
|
|
|
# Remove glow theme as it's premature
|
|
pisitools.removeDir("/usr/share/plymouth/themes/glow")
|
|
|
|
# Generate initramfs filelist
|
|
#shelltools.system("./generate-flist %s" % get.installDIR())
|
|
|
|
pisitools.dodoc("TODO", "COPYING", "README", "ChangeLog")
|