wok annotate fbpanel/receipt @ rev 20915

updated fbpanel (6.1 -> 7.0)
author Hans-G?nter Theisgen
date Thu Feb 28 15:53:45 2019 +0100 (2019-02-28)
parents 17e313b5b9c1
children 5ea0ce1cecc0
rev   line source
pascal@11221 1 # SliTaz package receipt.
pascal@11221 2
pascal@11221 3 PACKAGE="fbpanel"
Hans-G?nter@20915 4 VERSION="7.0"
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"
Hans-G?nter@20915 9 WEB_SITE="https://github.com/aanatoly/fbpanel"
Hans-G?nter@20915 10
Hans-G?nter@20915 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@20915 12 WGET_URL="https://github.com/aanatoly/$PACKAGE/archive/$VERSION.tar.gz"
pascal@11221 13
pascal@15593 14 DEPENDS="gtk+"
pascal@15593 15 BUILD_DEPENDS="gtk+-dev"
Hans-G?nter@20915 16 HOST_ARCH="i486 arm"
pascal@15593 17
pascal@11221 18 # Rules to configure and make the package.
pascal@11221 19 compile_rules()
pascal@11221 20 {
Hans-G?nter@20915 21 patch -p 1 .config/rules.mk $stuff/patch.7.0
pascal@17670 22 export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -lX11"
Hans-G?nter@20915 23 ./configure &&
Hans-G?nter@20915 24 make -j 1 &&
Hans-G?nter@20915 25 make install
pascal@11221 26 }
pascal@11221 27
pascal@11221 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11221 29 genpkg_rules()
pascal@11221 30 {
pascal@11221 31 mkdir -p $fs/usr
pascal@15593 32 cp -a $install/usr/bin $fs/usr
pascal@15593 33 cp -a $install/usr/lib $fs/usr
pascal@15593 34 cp -a $install/usr/share $fs/usr
pascal@11221 35 # Custom config file
pascal@11221 36 cp -a $stuff/default $fs/usr/share/fbpanel
pascal@11221 37 }