wok annotate awesome/receipt @ rev 6377

Up: openvpn, openvpn-pam to 2.1.3.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Sep 21 12:20:19 2010 +0000 (2010-09-21)
parents ec066bd77049
children 60a26469a54d
rev   line source
mallory@2687 1 # SliTaz package receipt.
mallory@2687 2
mallory@2687 3 PACKAGE="awesome"
devl547@5611 4 VERSION="3.4.5"
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"
pankso@5337 8 DEPENDS="xorg-libX11 libxcb xcb-util lua pango cairo imlib2 dbus libev libxdg-basedir startup-notification"
pankso@5337 9 BUILD_DEPENDS="cmake xorg-libX11-dev libxcb-dev xcb-util-dev lua-dev pango-dev cairo-dev imlib2-dev dbus-dev libev-dev gperf cairo libxdg-basedir-dev startup-notification-dev imagemagick"
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"
jozee@3564 13 TAGS="window-manager wm"
mallory@2687 14
mallory@2687 15 # Rules to configure and make the package.
mallory@2687 16 compile_rules()
mallory@2687 17 {
mallory@2687 18 cd $src
mallory@2687 19 cmake -DCMAKE_INSTALL_PREFIX=/usr -DXDG_CONFIG_DIR=/etc/xdg .
pascal@2758 20 make &&
mallory@2687 21 make DESTDIR=_pkg install
mallory@2687 22
mallory@2687 23 }
mallory@2687 24
mallory@2687 25 # Rules to gen a SliTaz package suitable for Tazpkg.
mallory@2687 26 genpkg_rules()
mallory@2687 27 {
mallory@2687 28 mkdir -p $fs/etc
mallory@2687 29 cp -a $_pkg/etc $fs/
mallory@2687 30 mkdir -p $fs/usr
mallory@2687 31 cp -a $_pkg/usr/bin $fs/usr
mallory@2687 32 cp -a $_pkg/usr/share $fs/usr
mallory@2687 33 }
mallory@2687 34
mallory@3114 35 post_install()
mallory@3114 36 {
mallory@3114 37 res=`cat $1/etc/slim.conf | grep ^session | sed s/"sessions. *"//`
mallory@3114 38 # Adding WM to SLIM available sessions.
mallory@3114 39 if ! echo "$res" | grep -q $PACKAGE; then
mallory@3114 40 echo -n "Adding $PACKAGE to /etc/slim.conf..."
mallory@3114 41 sed -i "s/^sessions.*/sessions ${res},$PACKAGE/" /etc/slim.conf
mallory@3114 42 status
mallory@3114 43 fi
mallory@3114 44 }
mallory@3114 45
mallory@3114 46 post_remove()
mallory@3114 47 {
mallory@3114 48 # Remove WM from SLIM available sessions.
mallory@3114 49 if grep -q $PACKAGE $1/etc/slim.conf; then
mallory@3114 50 sed -i s/,$PACKAGE// $1/etc/slim.conf
mallory@3114 51 fi
mallory@3114 52 }
mallory@3114 53