wok view fbpanel/receipt @ rev 15823

bazaar-tools, transmission: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jan 24 14:19:06 2014 +0000 (2014-01-24)
parents 1ae5963f23df
children a002e9484225
line source
1 # SliTaz package receipt.
3 PACKAGE="fbpanel"
4 VERSION="6.1"
5 CATEGORY="x-window"
6 SHORT_DESC="Fbpanel is a lightweight GTK2-based panel for UNIX desktop."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 TARBALL="$PACKAGE-$VERSION.tbz2"
10 WEB_SITE="http://fbpanel.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="gtk+"
14 BUILD_DEPENDS="gtk+-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 export LDFLAGS="-Wl,--copy-dt-needed-entries -lX11"
21 ./configure && make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/bin $fs/usr
29 cp -a $install/usr/lib $fs/usr
30 cp -a $install/usr/share $fs/usr
31 # Custom config file
32 cp -a $stuff/default $fs/usr/share/fbpanel
33 }