wok-next view fbpanel/receipt @ rev 21724

busybox: update configs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 11:04:25 2020 +0000 (2020-09-01)
parents f48456621a9d
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="fbpanel"
4 VERSION="6.1"
5 CATEGORY="x-window"
6 SHORT_DESC="Lightweight GTK2-based panel for UNIX desktop"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="http://fbpanel.sourceforge.net/"
11 TARBALL="$PACKAGE-$VERSION.tbz2"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 BUILD_DEPENDS="gtk2-dev"
16 compile_rules() {
17 export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -lX11"
19 ./configure &&
20 make &&
21 make install
22 }
24 genpkg_rules() {
25 mkdir -p $fs/usr
26 cp -a $install/usr/bin $fs/usr
27 cp -a $install/usr/lib $fs/usr
28 cp -a $install/usr/share $fs/usr
29 # Custom config file
30 cp -a $stuff/default $fs/usr/share/fbpanel
31 DEPENDS="gtk2"
32 }