wok annotate fbpanel/receipt @ rev 17086

tramys-client, tramys-server: now using http headers only (no more additional info in the server logs); added a lot of comments.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Aug 26 13:31:50 2014 +0300 (2014-08-26)
parents 3b4e4318134e
children 17e313b5b9c1
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@15593 8 LICENSE="MIT"
pascal@11221 9 TARBALL="$PACKAGE-$VERSION.tbz2"
pascal@11221 10 WEB_SITE="http://fbpanel.sourceforge.net/"
pascal@11221 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pankso@16252 12 HOST_ARCH="i486 arm"
pascal@11221 13
pascal@15593 14 DEPENDS="gtk+"
pascal@15593 15 BUILD_DEPENDS="gtk+-dev"
pascal@15593 16
pascal@11221 17 # Rules to configure and make the package.
pascal@11221 18 compile_rules()
pascal@11221 19 {
pascal@11221 20 cd $src
pascal@15110 21 export LDFLAGS="-Wl,--copy-dt-needed-entries -lX11"
pascal@11221 22 ./configure && make && make install
pascal@11221 23 }
pascal@11221 24
pascal@11221 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11221 26 genpkg_rules()
pascal@11221 27 {
pascal@11221 28 mkdir -p $fs/usr
pascal@15593 29 cp -a $install/usr/bin $fs/usr
pascal@15593 30 cp -a $install/usr/lib $fs/usr
pascal@15593 31 cp -a $install/usr/share $fs/usr
pascal@11221 32 # Custom config file
pascal@11221 33 cp -a $stuff/default $fs/usr/share/fbpanel
pascal@11221 34 }