mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
desktop/enlightenment: Updated for version 0.26.0.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
f85db73aae
commit
2f1c7eb159
4 changed files with 35 additions and 8 deletions
|
@ -19,3 +19,9 @@ fi
|
|||
if [ -x /usr/bin/update-mime-database ]; then
|
||||
/usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1
|
||||
fi
|
||||
|
||||
if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
|
||||
if [ -x /usr/bin/gtk-update-icon-cache ]; then
|
||||
/usr/bin/gtk-update-icon-cache -f usr/share/icons/hicolor >/dev/null 2>&1
|
||||
fi
|
||||
fi
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Slackware build script for Enlightenment
|
||||
# Erik Falor | Logan, UT, USA | ewfalor@gmail.com | February 2022
|
||||
# Erik Falor | Logan, UT, USA | ewfalor@gmail.com | January 2024
|
||||
# All rights reserved.
|
||||
|
||||
# Previously by Ryan P.C. McQuen | Everett, WA | ryanpcmcquen@member.fsf.org
|
||||
# Originally by Aleksandar Samardzic <asamardzic@gmail.com>
|
||||
|
@ -27,7 +28,7 @@
|
|||
cd $(dirname $0) ; CWD=$(pwd)
|
||||
|
||||
PRGNAM=enlightenment
|
||||
VERSION=${VERSION:-0.25.1}
|
||||
VERSION=${VERSION:-0.26.0}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
PKGTYPE=${PKGTYPE:-tgz}
|
||||
|
@ -68,7 +69,7 @@ else
|
|||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
DOCS="AUTHORS COPYING INSTALL NEWS README TODO"
|
||||
DOCS="AUTHORS COPYING README.md TODO.md"
|
||||
|
||||
set -e
|
||||
|
||||
|
@ -89,8 +90,7 @@ meson . build \
|
|||
--prefix=/usr/ \
|
||||
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||
-Dsystemd=false \
|
||||
-Dpam=false \
|
||||
-Dbuild-id=$ARCH-slackware-linux
|
||||
-Dpam=true
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="enlightenment"
|
||||
VERSION="0.25.1"
|
||||
VERSION="0.26.0"
|
||||
HOMEPAGE="https://www.enlightenment.org/"
|
||||
DOWNLOAD="https://download.enlightenment.org/rel/apps/enlightenment/enlightenment-0.25.1.tar.xz"
|
||||
MD5SUM="68d37c845c6a9e24e9b2b9709e5994be"
|
||||
DOWNLOAD="https://download.enlightenment.org/rel/apps/enlightenment/enlightenment-0.26.0.tar.xz"
|
||||
MD5SUM="17cbf0f2dfe419019cc90f4392d9980d"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="efl"
|
||||
|
|
21
desktop/enlightenment/xinitrc.enlightenment17
Normal file
21
desktop/enlightenment/xinitrc.enlightenment17
Normal file
|
@ -0,0 +1,21 @@
|
|||
#!/bin/sh
|
||||
# $XConsortium: xinitrc.cpp,v 1.4 91/08/22 11:41:34 rws Exp $
|
||||
|
||||
userresources=$HOME/.Xresources
|
||||
usermodmap=$HOME/.Xmodmap
|
||||
sysresources=/etc/X11/xinit/.Xresources
|
||||
sysmodmap=/etc/X11/xinit/.Xmodmap
|
||||
|
||||
# merge in defaults and keymaps
|
||||
[ -f $sysresources ] && xrdb -merge $sysresources
|
||||
[ -f $sysmodmap ] && xmodmap $sysmodmap
|
||||
[ -f $userresources ] && xrdb -merge $userresources
|
||||
[ -f $usermodmap ] && xmodmap $usermodmap
|
||||
|
||||
# Start the window manager:
|
||||
if [ -z "$DESKTOP_SESSION" -a -x /usr/bin/ck-launch-session ]; then
|
||||
exec ck-launch-session enlightenment_start
|
||||
else
|
||||
exec enlightenment_start
|
||||
fi
|
||||
|
Loading…
Reference in a new issue