wok annotate awesome/receipt @ rev 3311

Up: awesome (3.3)
author Mallory MOLLO <mallory@skyrock.com>
date Sat Jun 06 20:18:15 2009 +0200 (2009-06-06)
parents fbb5d580ddc3
children c616ce6b7873
rev   line source
mallory@2687 1 # SliTaz package receipt.
mallory@2687 2
mallory@2687 3 PACKAGE="awesome"
mallory@3311 4 VERSION="3.3"
mallory@2687 5 CATEGORY="x-window"
mallory@2687 6 SHORT_DESC="awesome is a highly configurable, next generation framework window manager for X."
mallory@2687 7 MAINTAINER="mallory@sweetpeople.org"
mallory@3311 8 DEPENDS="xorg-libX11 libxcb xcb-util lua pango cairo-xcb imlib2 dbus libev libxdg-basedir startup-notification"
mallory@3311 9 BUILD_DEPENDS="cmake xorg-libX11-dev libxcb-dev xcb-util-dev lua-dev pango-dev cairo-xcb-dev imlib2-dev dbus-dev libev-dev gperf cairo-xcb libxdg-basedir-dev startup-notification-dev"
mallory@2687 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
mallory@2687 11 WEB_SITE="http://awesome.naquadah.org"
mallory@2687 12 WGET_URL="$WEB_SITE/download/$TARBALL"
mallory@2687 13
mallory@2687 14 # Rules to configure and make the package.
mallory@2687 15 compile_rules()
mallory@2687 16 {
mallory@2687 17 cd $src
mallory@2687 18 cmake -DCMAKE_INSTALL_PREFIX=/usr -DXDG_CONFIG_DIR=/etc/xdg .
pascal@2758 19 make &&
mallory@2687 20 make DESTDIR=_pkg install
mallory@2687 21
mallory@2687 22 }
mallory@2687 23
mallory@2687 24 # Rules to gen a SliTaz package suitable for Tazpkg.
mallory@2687 25 genpkg_rules()
mallory@2687 26 {
mallory@2687 27 mkdir -p $fs/etc
mallory@2687 28 cp -a $_pkg/etc $fs/
mallory@2687 29 mkdir -p $fs/usr
mallory@2687 30 cp -a $_pkg/usr/bin $fs/usr
mallory@2687 31 cp -a $_pkg/usr/share $fs/usr
mallory@2687 32 }
mallory@2687 33
mallory@3114 34 post_install()
mallory@3114 35 {
mallory@3114 36 res=`cat $1/etc/slim.conf | grep ^session | sed s/"sessions. *"//`
mallory@3114 37 # Adding WM to SLIM available sessions.
mallory@3114 38 if ! echo "$res" | grep -q $PACKAGE; then
mallory@3114 39 echo -n "Adding $PACKAGE to /etc/slim.conf..."
mallory@3114 40 sed -i "s/^sessions.*/sessions ${res},$PACKAGE/" /etc/slim.conf
mallory@3114 41 status
mallory@3114 42 fi
mallory@3114 43 }
mallory@3114 44
mallory@3114 45 post_remove()
mallory@3114 46 {
mallory@3114 47 # Remove WM from SLIM available sessions.
mallory@3114 48 if grep -q $PACKAGE $1/etc/slim.conf; then
mallory@3114 49 sed -i s/,$PACKAGE// $1/etc/slim.conf
mallory@3114 50 fi
mallory@3114 51 }
mallory@3114 52