plymouth.paketlendi

This commit is contained in:
milisbir 2017-08-23 19:35:18 +03:00
parent 04ef7ad76f
commit b9c91c00d3
3 changed files with 87 additions and 0 deletions

View File

@ -0,0 +1,41 @@
if [ -x usr/bin/gconftool-2 ]; then
for schema in $(ls /etc/gconf/schemas/*.schemas); do
#semalarin kurumu
echo "GCONF_CONFIG_SOURCE=\"xml::etc/gconf/gconf.xml.defaults\" \
usr/bin/gconftool-2 --makefile-install-rule etc/gconf/schemas/${schema} >/dev/null 2>&1
done;
fi
if [ -x usr/bin/rarian-sk-update ]; then
usr/bin/rarian-sk-update 1> /dev/null 2> /dev/null
fi
# update mime database
if [ -x usr/bin/update-mime-database ]; then
usr/bin/update-mime-database usr/share/mime 1> /dev/null 2> /dev/null
fi
# update desktop entries
if [ -x usr/bin/update-desktop-database ]; then
usr/bin/update-desktop-database 1> /dev/null 2> /dev/null
fi
# update hicolor icons
if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
rm -f usr/share/icons/hicolor/icon-theme.cache
fi
usr/bin/gtk-update-icon-cache -f -q usr/share/icons/hicolor 1>/dev/null 2>/dev/null
if [ -x /usr/bin/glib-compile-schemas ]; then
/usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas/ >/dev/null 2>&1
fi
# Restart gconfd-2 if running to reload new gconf settings
if ps acx | grep -q gconfd-2 ; then
killall -HUP gconfd-2 ;
fi
# A good idea whenever kernel modules are added or changed:
if [ -x sbin/depmod ]; then
/sbin/depmod -a 1> /dev/null 2> /dev/null
fi

View File

@ -0,0 +1,3 @@
# Administrator customizations go in this file
#[Daemon]
Theme=glow

View File

@ -0,0 +1,43 @@
# Description: Kernel modulleri desteğine sahip bir grafik önyükleme başlatma ekranı
# URL: http://www.pulseaudio.org
# Packager: milisarge
# Depends on: xorg-libdrm pango docbook-xsl gtk3
name=plymouth
version=0.9.3
release=1
source=(https://www.freedesktop.org/software/plymouth/releases/$name-$version.tar.xz
https://raw.githubusercontent.com/yakar/milis-linux-wallpapers/master/milis-linux-tree.png
plymouthd.conf)
build() {
cd $name-$version
./configure --prefix=/usr \
--exec-prefix=/usr \
--libdir=/usr/lib \
--libexecdir=/usr/lib \
--infodir=/usr/info \
--sysconfdir=/etc \
--localstatedir=/var \
--mandir=/usr/man \
--enable-tracing \
--without-rhgb-compat-link \
--with-gdm-autostart-file=yes \
--with-logo=/usr/share/plymouth/VL.png \
--with-background-start-color-stop=0x000000 \
--with-background-end-color-stop=0x4D4D4D \
--without-system-root-install \
--program-prefix="" \
--program-suffix="" \
--build="x86_64-milis-linux"
make || exit 1
make install DESTDIR=$PKG || exit 1
rm -rf $PKG/*.wants
install -Dm644 "$SRC/milis-linux-tree.png" "$PKG/usr/share/plymouth/milis.png"
install -Dm644 "$SRC/plymouthd.conf" "$PKG/etc/plymouth/plymouthd.conf"
}