wok annotate fbpanel/receipt @ rev 15593

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Dec 03 18:28:51 2013 +0000 (2013-12-03)
parents 1ae5963f23df
children a002e9484225
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"
pascal@11221 12
pascal@15593 13 DEPENDS="gtk+"
pascal@15593 14 BUILD_DEPENDS="gtk+-dev"
pascal@15593 15
pascal@11221 16 # Rules to configure and make the package.
pascal@11221 17 compile_rules()
pascal@11221 18 {
pascal@11221 19 cd $src
pascal@15110 20 export LDFLAGS="-Wl,--copy-dt-needed-entries -lX11"
pascal@11221 21 ./configure && make && make install
pascal@11221 22 }
pascal@11221 23
pascal@11221 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11221 25 genpkg_rules()
pascal@11221 26 {
pascal@11221 27 mkdir -p $fs/usr
pascal@15593 28 cp -a $install/usr/bin $fs/usr
pascal@15593 29 cp -a $install/usr/lib $fs/usr
pascal@15593 30 cp -a $install/usr/share $fs/usr
pascal@11221 31 # Custom config file
pascal@11221 32 cp -a $stuff/default $fs/usr/share/fbpanel
pascal@11221 33 }