wok view tint2/receipt @ rev 15207

Add mktorrent
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 10 12:15:52 2013 +0000 (2013-09-10)
parents 82572c53729d
children d504756dc474
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 LICENSE="GPL2"
10 WEB_SITE="http://tint2.googlecode.com/files/"
11 WGET_URL="$WEB_SITE/$TARBALL"
12 CONFIG_FILES="/etc/xdg/tint2/tint2rc"
13 TAGS="desktop panel taskbar"
15 DEPENDS="gtk+ cairo pango glib imlib2 xorg-libXinerama xcb-util freetype"
16 BUILD_DEPENDS="pygtk-dev cmake pkg-config imlib2-dev xcb-util-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 [ -d build ] || mkdir build
23 cd build
24 cmake -DCMAKE_INSTALL_PREFIX=/usr ../ &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $install/etc $fs
34 cp -a $install/usr/bin $fs/usr
35 }