wok annotate fbpanel/receipt @ rev 15315

tilda: include glib.h only
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Sep 27 16:51:47 2013 +0000 (2013-09-27)
parents 81200a5ef6b9
children 3b4e4318134e
rev   line source
pascal@11221 1 # SliTaz package receipt.
pascal@11221 2
pascal@11221 3 PACKAGE="fbpanel"
pascal@11221 4 VERSION="6.1"
pascal@11221 5 CATEGORY="x-window"
pascal@11221 6 SHORT_DESC="Fbpanel is a lightweight GTK2-based panel for UNIX desktop."
pascal@11221 7 MAINTAINER="pankso@slitaz.org"
pascal@11221 8 DEPENDS="gtk+"
pascal@11221 9 BUILD_DEPENDS="gtk+-dev"
pascal@11221 10 TARBALL="$PACKAGE-$VERSION.tbz2"
pascal@11221 11 WEB_SITE="http://fbpanel.sourceforge.net/"
pascal@11221 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@11221 13
pascal@11221 14 # Rules to configure and make the package.
pascal@11221 15 compile_rules()
pascal@11221 16 {
pascal@11221 17 cd $src
pascal@15110 18 export LDFLAGS="-Wl,--copy-dt-needed-entries -lX11"
pascal@11221 19 ./configure && make && make install
pascal@11221 20 }
pascal@11221 21
pascal@11221 22 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11221 23 genpkg_rules()
pascal@11221 24 {
pascal@11221 25 mkdir -p $fs/usr
pascal@11221 26 cp -a $_pkg/usr/bin $fs/usr
pascal@11221 27 cp -a $_pkg/usr/lib $fs/usr
pascal@11221 28 cp -a $_pkg/usr/share $fs/usr
pascal@11221 29 # Custom config file
pascal@11221 30 cp -a $stuff/default $fs/usr/share/fbpanel
pascal@11221 31 }