wok annotate awesome/receipt @ rev 3175

reconfigure udev after /etc/udev/rules.d addition
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon May 25 13:26:29 2009 +0200 (2009-05-25)
parents d309f58d5d7c
children 5b127b495311
rev   line source
mallory@2687 1 # SliTaz package receipt.
mallory@2687 2
mallory@2687 3 PACKAGE="awesome"
mallory@2687 4 VERSION="3.2.1"
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"
pascal@2758 8 DEPENDS="xorg-libX11 libxcb xcb-util lua pango cairo-xcb imlib2 dbus libev"
pascal@3098 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"
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