wok view xfe/receipt @ rev 17501

Normalize tags "file-manager", "web-browser", "text-editor", "terminal", and "window-manager" according to tazx.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Jan 08 02:04:05 2015 +0200 (2015-01-08)
parents 809051a5c75a
children 2611e3a0ba21
line source
1 # SliTaz package receipt.
3 PACKAGE="xfe"
4 VERSION="1.37"
5 CATEGORY="system-tools"
6 SHORT_DESC="Xfe File manager and utility using Fox toolkit."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://roland65.free.fr/xfe/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 TAGS="file-manager"
13 #HOST_ARCH="i486 arm"
15 SUGGESTED="adie calculator shutterbug xfe-extras xfi"
16 DEPENDS="libpng jpeg tiff xorg-libXft fox"
17 BUILD_DEPENDS="libpng-dev jpeg-dev tiff-dev xorg-libXft-dev fox-dev"
18 GENERIC_MENUS="no"
20 # Handle cross compilation.
21 case "$ARCH" in
22 i?86) BUILD_DEPENDS="$BUILD_DEPENDS intltool" ;;
23 arm)
24 export LDLAGS="-L/cross/$ARCH/sysroot/usr/lib" ;;
25 esac
27 # Rules to configure and make the package.
28 compile_rules()
29 {
30 ./configure $CONFIGURE_ARGS && make && make install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/bin $fs/usr/share/xfe/icons
37 cp -a $install/usr/bin/$PACKAGE $fs/usr/bin
38 cp -a $install/usr/share/xfe/xferc $fs/usr/share/xfe
39 sed -i 's/gnomeblue-theme/tango-theme/' $fs/usr/share/xfe/xferc
40 # Tango/Gnome icons theme only
41 cp -a $install/usr/share/xfe/icons/tango-theme \
42 $fs/usr/share/xfe/icons
43 cp -a $install/usr/share/xfe/icons/gnome-theme \
44 $fs/usr/share/xfe/icons
45 }