wok view fbpanel/receipt @ rev 15135

python-werkzeug: typos
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 15 10:36:33 2013 +0000 (2013-08-15)
parents 81200a5ef6b9
children 3b4e4318134e
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 DEPENDS="gtk+"
9 BUILD_DEPENDS="gtk+-dev"
10 TARBALL="$PACKAGE-$VERSION.tbz2"
11 WEB_SITE="http://fbpanel.sourceforge.net/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 export LDFLAGS="-Wl,--copy-dt-needed-entries -lX11"
19 ./configure && make && make install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr
26 cp -a $_pkg/usr/bin $fs/usr
27 cp -a $_pkg/usr/lib $fs/usr
28 cp -a $_pkg/usr/share $fs/usr
29 # Custom config file
30 cp -a $stuff/default $fs/usr/share/fbpanel
31 }