diff --git a/packages/x11/other/evilwm/build b/packages/x11/other/evilwm/build new file mode 100755 index 0000000000..bda8ff3a15 --- /dev/null +++ b/packages/x11/other/evilwm/build @@ -0,0 +1,13 @@ +#!/bin/sh + +. config/options + +$SCRIPTS/build toolchain +$SCRIPTS/build libX11 +$SCRIPTS/build libXrandr +$SCRIPTS/build libXext + +cd $PKG_BUILD + +make CC=$TARGET_CC + diff --git a/packages/x11/other/evilwm/install b/packages/x11/other/evilwm/install new file mode 100755 index 0000000000..083422cc35 --- /dev/null +++ b/packages/x11/other/evilwm/install @@ -0,0 +1,15 @@ +#!/bin/sh + +. config/options + +$SCRIPTS/install libX11 +$SCRIPTS/install libXrandr +$SCRIPTS/install libXext + +PKG_DIR=`find $PACKAGES -type d -name $1` + +mkdir -p $INSTALL/usr/bin + cp -PR $PKG_BUILD/$1 $INSTALL/usr/bin + +# other usefull packages +$SCRIPTS/install xwd \ No newline at end of file diff --git a/packages/x11/other/evilwm/profile.d/evilwm.conf b/packages/x11/other/evilwm/profile.d/evilwm.conf new file mode 100644 index 0000000000..d3ab664706 --- /dev/null +++ b/packages/x11/other/evilwm/profile.d/evilwm.conf @@ -0,0 +1,24 @@ +################################################################################ +# Windowmanager environment variables. +# +# This file contains non-OpenELEC evironment variables as well as OpenELEC +# evironment variables that are not user defined. +################################################################################ + +# [-display display] [-term termprog] [-fn fontname] +# [-fg foreground] [-fc fixed] [-bg background] [-bw borderwidth] +# [-mask1 modifiers] [-mask2 modifiers] [-altmask modifiers] +# [-snap num] [-app name/class] [-g geometry] [-dock] +# [-v vdesk] [-s] [-nosoliddrag] [-V] + +if [ "$DEBUG" = "yes" ]; then + EVILWM_ARG="$EVILWM_ARG -fg red -bw 3" +else + EVILWM_ARG="$EVILWM_ARG -fg black -bw 0" +fi + +EVILWM_ARG="-fn fixed $EVILWM_ARG" + +WINDOWMANAGER="evilwm $EVILWM_ARG" + +export WINDOWMANAGER diff --git a/packages/x11/other/evilwm/url b/packages/x11/other/evilwm/url new file mode 100644 index 0000000000..6ed55c91ce --- /dev/null +++ b/packages/x11/other/evilwm/url @@ -0,0 +1 @@ +http://www.6809.org.uk/evilwm/evilwm-1.1.0pre8.tar.gz \ No newline at end of file