wok view tint2/receipt @ rev 9846

Fixed apache-mod-wsgi for tazwok. Just need to cd $src before compiling.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun May 15 18:30:30 2011 +0000 (2011-05-15)
parents e89882e9e63e
children 82572c53729d
line source
1 # SliTaz package receipt.
3 PACKAGE="tint2"
4 VERSION="0.11"
5 CATEGORY="misc"
6 SHORT_DESC="taskbar and panel"
7 MAINTAINER="jozee@slitaz.org"
8 DEPENDS="gtk+ cairo pango glib imlib2 xorg-libXinerama xcb-util freetype"
9 BUILD_DEPENDS="pygtk-dev cmake pkg-config"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://tint2.googlecode.com/files/"
12 WGET_URL="$WEB_SITE/$TARBALL"
13 CONFIG_FILES="/etc/xdg/tint2/tint2rc"
14 TAGS="desktop panel taskbar"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 [ -d build ] || mkdir build
21 cd build
22 cmake -DCMAKE_INSTALL_PREFIX=/usr ../ &&
23 make &&
24 make DESTDIR=$PWD/../_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $_pkg/etc $fs
32 cp -a $_pkg/usr/bin $fs/usr
33 }