wok-next view pcmanfm/receipt @ rev 21720

qt4: replaced libIDL by libidl
author Hans-G?nter Theisgen
date Wed Aug 05 09:22:38 2020 +0100 (2020-08-05)
parents 7c5d038be95b
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="pcmanfm"
4 VERSION="1.3.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="Light and easy to use file manager"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://wiki.lxde.org/en/PCManFM"
10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/lxde/pcmanfm.html"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="http://git.lxde.org/gitweb/?p=lxde/pcmanfm.git;a=snapshot;h=$VERSION;sf=txz"
14 TARBALL_SHA1="09d70c8297f373e49f94494136b73f9c0bce8fbb"
16 BUILD_DEPENDS="intltool libx11-dev pango-dev libfm-dev gtk2-dev automake"
17 DEPENDS="atk libcairo gdk-pixbuf glib gtk2 libfm libfm-gtk libx11 pango"
19 SUGGESTED="gvfs"
20 TAGS="file-manager"
22 compile_rules() {
23 # tarball from git.lxde.org requires this step
24 ./autogen.sh
26 ./configure $CONFIGURE_ARGS &&
27 make &&
28 make install || return 1
30 # default settings
31 install -Dm644 $stuff/pcmanfm.conf $install/etc/xdg/pcmanfm/default/pcmanfm.conf
33 # XDG autostart desktop file (lxsession will use it automatically)
34 cp -r $stuff/autostart/ $install/etc/xdg/
35 # add custom actions
36 mkdir -p $install/usr/share/file-manager
37 cp -r $stuff/actions/ $install/usr/share/file-manager
38 install -m755 $stuff/gvfs-mount-archive.sh $install/usr/bin
40 # avoid warning about missed modules dir
41 mkdir -p $install/usr/lib/pcmanfm
42 }