wok view pcmanfm/receipt @ rev 18670

taziso, iso2exe.sh: add custom config support ; awstat-hotspot, awesome, avant-window-navigator: update pre/post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Dec 04 21:23:22 2015 +0100 (2015-12-04)
parents d2af45554821
children 88d6c3ec605b
line source
1 # SliTaz package receipt.
3 PACKAGE="pcmanfm"
4 VERSION="aa3ca1c"
5 CATEGORY="system-tools"
6 SHORT_DESC="Light and easy to use file manager."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="http://pcmanfm.sourceforge.net/"
11 #WGET_URL="$SF_MIRROR/$PACKAGE/files/$TARBALL"
12 WGET_URL="http://git.lxde.org/gitweb/?p=lxde/pcmanfm.git;a=snapshot;h=$VERSION;sf=txz"
13 TAGS="file-manager"
14 HOST_ARCH="i486 arm"
16 SUGGESTED="gvfs"
17 DEPENDS="glibc-base glib libgio util-linux-uuid libxcb xcb-util expat \
18 zlib fontconfig freetype gtk+ startup-notification dbus dbus-glib libfm-gtk"
19 BUILD_DEPENDS="gtk+-dev dbus-glib-dev dbus-dev startup-notification-dev \
20 libxcb-dev xcb-util-dev libfm-dev menu-cache-dev expat-dev libfm-gtk gtk-doc libtool"
22 # Handle cross compilation.
23 case "$ARCH" in
24 i?86) BUILD_DEPENDS="$BUILD_DEPENDS shared-mime-info intltool gvfs-dev" ;;
25 esac
27 # Rules to configure and make the package.
28 compile_rules()
29 {
30 patch -p1 -i $stuff/pcmanfm-network-icon.patch
31 ./autogen.sh
32 ./configure $CONFIGURE_ARGS &&
33 make && make install
34 }
36 # Rules to gen a SliTaz package suitable for Tazpkg.
37 genpkg_rules()
38 {
39 mkdir -p $fs/usr/share $fs/etc/xdg/pcmanfm
40 cp -a $install/usr/bin $fs/usr
41 cp -a $install/usr/share/pcmanfm $fs/usr/share
42 cp -a $stuff/default $fs/etc/xdg/pcmanfm
44 # XDG autostart desktop file (lxsession will use it automatically)
45 cp -a $stuff/autostart $fs/etc/xdg
47 cp -a $install/usr/share/applications $fs/usr/share
49 # Add custom actions
50 mkdir -p $fs/usr/share/file-manager
51 cp -a $stuff/actions $fs/usr/share/file-manager
52 cp -a $stuff/gvfs-mount-archive.sh $fs/usr/bin
53 chmod +x $fs/usr/bin/gvfs-mount-archive.sh
54 }