wok view tint2/receipt @ rev 8881

coreutils-command, coreutils-file-summarize: restore busybox links in port_remove()
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 27 01:55:24 2011 +0100 (2011-02-27)
parents b5219ee4c3eb
children 4a193c62c501
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="$DEPENDS libpng-dev jpeg-dev freetype-dev glib-dev cairo-dev pango-dev imlib2 imlib2-dev gtk+-dev xorg-dev-proto pygtk-dev cmake pkg-config fontconfig-dev"
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 }