wok diff awesome/receipt @ rev 2747

Add Seamonkey web suite
author Christophe Lincoln <pankso@slitaz.org>
date Sun Apr 26 00:43:36 2009 +0200 (2009-04-26)
parents
children 3a4d65af326e
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/awesome/receipt	Sun Apr 26 00:43:36 2009 +0200
     1.3 @@ -0,0 +1,33 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="awesome"
     1.7 +VERSION="3.2.1"
     1.8 +CATEGORY="x-window"
     1.9 +SHORT_DESC="awesome is a highly configurable, next generation framework window manager for X."
    1.10 +MAINTAINER="mallory@sweetpeople.org"
    1.11 +DEPENDS="xorg-libX11 libxcb xcb-util lua pango cairo imlib2 dbus libev"
    1.12 +BUILD_DEPENDS="cmake xorg-libX11-dev libxcb-dev xcb-util-dev lua-dev pango-dev cairo-dev imlib2-dev dbus-dev libev-dev gperf"
    1.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.14 +WEB_SITE="http://awesome.naquadah.org"
    1.15 +WGET_URL="$WEB_SITE/download/$TARBALL"
    1.16 +
    1.17 +# Rules to configure and make the package.
    1.18 +compile_rules()
    1.19 +{
    1.20 +    cd $src
    1.21 +    cmake -DCMAKE_INSTALL_PREFIX=/usr -DXDG_CONFIG_DIR=/etc/xdg .
    1.22 +    make
    1.23 +    make DESTDIR=_pkg install
    1.24 +    
    1.25 +}
    1.26 +
    1.27 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.28 +genpkg_rules()
    1.29 +{
    1.30 +	mkdir -p $fs/etc
    1.31 +	cp -a $_pkg/etc $fs/
    1.32 +	mkdir -p $fs/usr
    1.33 +	cp -a $_pkg/usr/bin $fs/usr
    1.34 +	cp -a $_pkg/usr/share $fs/usr
    1.35 +}
    1.36 +