wok-next view garcon/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 5669e8b3be70
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="garcon"
4 VERSION="0.4.0" # Xfce release 4.12: http://archive.xfce.org/xfce/4.12/src/
5 CATEGORY="misc"
6 SHORT_DESC="Xfce menu library"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="LGPL2"
9 WEB_SITE="https://www.xfce.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://archive.xfce.org/src/xfce/$PACKAGE/${VERSION%.*}/$TARBALL"
14 BUILD_DEPENDS="intltool libxfce4util-dev gtk2-dev libxfce4ui-dev \
15 libsm-dev startup-notification-dev xcb-util-dev"
16 SPLIT="$PACKAGE-dev"
18 compile_rules() {
19 ./configure \
20 --disable-debug \
21 --disable-gtk-doc \
22 $CONFIGURE_ARGS &&
23 fix libtool &&
24 make &&
25 make install || return 1
27 find $install -type f -name '*.so*' -exec chmod 755 '{}' \; # 644->755
28 }
30 genpkg_rules() {
31 case $PACKAGE in
32 garcon)
33 copy @std
34 DEPENDS="gdk-pixbuf glib gtk2 libxfce4ui libxfce4util"
35 ;;
36 *-dev)
37 copy @dev
38 DEPENDS="garcon \
39 glib-dev gtk2-dev libxfce4ui-dev"
40 ;;
41 esac
42 TAGS="Xfce"
43 }