wok-current view tint2/receipt @ rev 14842
slim-theme-*: correct strings (thanks subreptice and slimhunter)
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Thu Jul 18 02:16:41 2013 +0300 (2013-07-18) |
parents | 4a193c62c501 |
children | 380ffe05937a |
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 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://tint2.googlecode.com/files/"
10 WGET_URL="$WEB_SITE/$TARBALL"
11 CONFIG_FILES="/etc/xdg/tint2/tint2rc"
12 TAGS="desktop panel taskbar"
14 DEPENDS="gtk+ cairo pango glib imlib2 xorg-libXinerama xcb-util freetype"
15 BUILD_DEPENDS="pygtk-dev cmake pkg-config imlib2-dev xcb-util-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 [ -d build ] || mkdir build
22 cd build
23 cmake -DCMAKE_INSTALL_PREFIX=/usr ../ &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $_pkg/etc $fs
33 cp -a $_pkg/usr/bin $fs/usr
34 }