desktop/xmonad: Updated for version 0.9.1
This commit is contained in:
parent
9ef8cc5b18
commit
c076b3337b
|
@ -1,17 +1,17 @@
|
|||
xmonad (stable, featureful and easy tiling window manager for X11)
|
||||
xmonad (stable, featureful, and easy tiling window manager for X11)
|
||||
|
||||
xmonad is a dynamically tiling X11 window manager that is written
|
||||
and configured in Haskell. In a normal WM, you spend half your time
|
||||
aligning and searching for windows. xmonad makes work easier, by
|
||||
automating this.
|
||||
|
||||
This requires ghc and X11-haskell from SlackBuilds.org.
|
||||
This requires ghc, haskell-mtl and haskell-X11.
|
||||
|
||||
After installing, use 'xwmconfig' command to reselect xmonad as window
|
||||
manager, either as root to do system wide selection or as normal user
|
||||
to do user specific selection.
|
||||
manager, either as root to do system-wide selection or as normal user
|
||||
to do user-specific selection.
|
||||
|
||||
To get you started, the most basic key bindings are:
|
||||
mod-shift-return Launch xterm
|
||||
mod-shift-q Quit xmonad
|
||||
For a Guided Tour: http://www.xmonad.org/tour.html
|
||||
For a guided tour, see http://www.xmonad.org/tour.html
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
# customary to leave one space after the ':'.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
xmonad: xmonad (stable, featureful and easy tiling window manager for X11)
|
||||
xmonad: xmonad (stable, featureful, and easy tiling window manager for X11)
|
||||
xmonad:
|
||||
xmonad: xmonad is a dynamically tiling X11 window manager that is written
|
||||
xmonad: and configured in Haskell. In a normal WM, you spend half your time
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
userresources=$HOME/.Xresources
|
||||
usermodmap=$HOME/.Xmodmap
|
||||
sysresources=/usr/lib/X11/xinit/.Xresources
|
||||
sysmodmap=/usr/lib/X11/xinit/.Xmodmap
|
||||
sysresources=/etc/X11/xinit/.Xresources
|
||||
sysmodmap=/etc/X11/xinit/.Xmodmap
|
||||
|
||||
# Merge in defaults and keymaps
|
||||
[ -f $sysresources ] && /usr/bin/xrdb -merge $sysresources
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
# Public domain.
|
||||
|
||||
PRGNAM=xmonad
|
||||
VERSION=${VERSION:-0.8.1}
|
||||
VERSION=${VERSION:-0.9.1}
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
@ -18,10 +18,13 @@ OUTPUT=${OUTPUT:-/tmp}
|
|||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
@ -41,22 +44,47 @@ find . \
|
|||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
runhaskell Setup.lhs configure \
|
||||
runghc Setup.lhs configure \
|
||||
--prefix=/usr \
|
||||
--docdir=/usr/doc/$PRGNAM-$VERSION
|
||||
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||
--docdir=/usr/doc/$PRGNAM-$VERSION \
|
||||
--enable-shared \
|
||||
--flags="-threaded -dynamic"
|
||||
|
||||
runhaskell Setup.lhs build
|
||||
runhaskell Setup.lhs copy --destdir=$PKG
|
||||
runhaskell Setup.lhs register --gen-script
|
||||
runghc Setup.lhs build
|
||||
runghc Setup.lhs haddock
|
||||
runghc Setup.lhs copy --destdir=$PKG
|
||||
runghc Setup.lhs register --gen-script
|
||||
|
||||
# Move the example config file
|
||||
mv $PKG/usr/share/$PRGNAM-$VERSION/man $PKG/usr/doc/$PRGNAM-$VERSION/man
|
||||
rmdir $PKG/usr/share/$PRGNAM-$VERSION
|
||||
rmdir $PKG/usr/share
|
||||
|
||||
# Copy the man page
|
||||
mkdir -p $PKG/usr/man/man1
|
||||
cp man/xmonad.1 $PKG/usr/man/man1/xmonad.1
|
||||
chmod 644 $PKG/usr/man/man1/xmonad.1
|
||||
chown root.root $PKG/usr/man/man1/xmonad.1
|
||||
|
||||
# Add X startup script
|
||||
mkdir -p $PKG/etc/X11/xinit
|
||||
cat $CWD/xinitrc.xmonad > $PKG/etc/X11/xinit/xinitrc.xmonad
|
||||
chmod 0755 $PKG/etc/X11/xinit/xinitrc.xmonad
|
||||
|
||||
( cd $PKG
|
||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \
|
||||
xargs strip --strip-unneeded 2> /dev/null || true
|
||||
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \
|
||||
xargs strip --strip-unneeded 2> /dev/null
|
||||
xargs strip --strip-unneeded 2> /dev/null || true
|
||||
)
|
||||
|
||||
cp -a README $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
( cd $PKG/usr/man
|
||||
find . -type f -exec gzip -9 {} \;
|
||||
for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||
)
|
||||
|
||||
cp -a CONFIG README $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
|
@ -64,11 +92,5 @@ cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
|||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
mv register.sh $PKG/install/register.sh
|
||||
|
||||
# Add X startup script
|
||||
mkdir -p $PKG/etc/X11/xinit
|
||||
cat $CWD/xinitrc.xmonad > $PKG/etc/X11/xinit/xinitrc.xmonad
|
||||
chmod 0755 $PKG/etc/X11/xinit/xinitrc.xmonad
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
||||
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
PRGNAM="xmonad"
|
||||
VERSION="0.8.1"
|
||||
VERSION="0.9.1"
|
||||
HOMEPAGE="http://xmonad.org/"
|
||||
DOWNLOAD="http://hackage.haskell.org/packages/archive/xmonad/0.8.1/xmonad-0.8.1.tar.gz"
|
||||
MD5SUM="03a8f0a420902d9eea3df1d8d62598c7"
|
||||
DOWNLOAD="http://hackage.haskell.org/packages/archive/xmonad/0.9.1/xmonad-0.9.1.tar.gz"
|
||||
MD5SUM="3d0dd5cf77768b10e1b7f3a47e32b09e"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Mikko Varri"
|
||||
EMAIL="vmj@linuxbox.fi"
|
||||
APPROVED="rworkman"
|
||||
|
|
Loading…
Reference in New Issue