wok-current view tint2/receipt @ rev 4995
Up: task (1.9.0) - thanks devs
author | Paul Issott <paul@slitaz.org> |
---|---|
date | Sat Feb 27 19:35:45 2010 +0000 (2010-02-27) |
parents | 1c4d8c3770a5 |
children | 4897058add72 |
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"
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 }