wok view pcmanfm/receipt @ rev 16394

Add: xinput-calibrator (for touchscreen calibration, tested on my pitft)
author Christophe Lincoln <pankso@slitaz.org>
date Tue Apr 15 18:32:55 2014 +0200 (2014-04-15)
parents 6aa2abac7209
children 3e67ad4646f6
line source
1 # SliTaz package receipt.
3 PACKAGE="pcmanfm"
4 VERSION="1.2.0"
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 HOST_ARCH="i486 arm"
14 SUGGESTED="gvfs"
15 DEPENDS="glibc-base glib libgio util-linux-uuid libxcb xcb-util expat \
16 zlib fontconfig freetype gtk+ startup-notification dbus dbus-glib libfm"
17 BUILD_DEPENDS="gtk+-dev dbus-glib-dev dbus-dev startup-notification-dev \
18 libxcb-dev xcb-util-dev libfm-dev menu-cache-dev expat-dev"
20 # Handle cross compilation.
21 case "$ARCH" in
22 i?86) BUILD_DEPENDS="$BUILD_DEPENDS shared-mime-info intltool gvfs-dev" ;;
23 esac
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 # Binutils 2.22 break many packages build without LDFLAGS set correctly.
29 export LDFLAGS="-Wl,--copy-dt-needed-entries"
31 ./configure $CONFIGURE_ARGS &&
32 make && make install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 mkdir -p $fs/usr/share $fs/etc/xdg/pcmanfm
39 cp -a $install/usr/bin $fs/usr
40 cp -a $install/usr/share/pcmanfm $fs/usr/share
41 cp -a $stuff/default $fs/etc/xdg/pcmanfm
43 # XDG autostart desktop file (lxsession will use it automaticaly)
44 cp -a $stuff/autostart $fs/etc/xdg
45 }