wok view tint2/receipt @ rev 5321

Up: boxbackup-client (0.11rc7)
author Dominique Corbex <domcox@slitaz.org>
date Wed Apr 21 19:54:12 2010 +0200 (2010-04-21)
parents 866fa2493b1b
children b5219ee4c3eb
line source
1 # SliTaz package receipt.
3 PACKAGE="tint2"
4 VERSION="0.7"
5 CATEGORY="misc"
6 SHORT_DESC="taskbar and panel"
7 MAINTAINER="jozee@slitaz.org"
8 DEPENDS="cairo pango glib imlib2 xorg-libXinerama xcb-util"
9 BUILD_DEPENDS="cairo-dev pango-dev imlib2-dev xorg-xineramaproto xorg-xextproto"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
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 ./configure --prefix=/usr \
21 --sysconfdir=/etc \
22 --disable-static \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$PWD/_pkg install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $_pkg/etc $fs
34 cp -a $_pkg/usr/bin $fs/usr
35 }