wok-6.x annotate pcmanfm/receipt @ rev 18845
mtpaint: add pcmanfm thumbnailer
(needs larger undoMBlimit option)
xterm: add libXaw3d options
(needs larger undoMBlimit option)
xterm: add libXaw3d options
author | Xander Ziiryanoff <psychomaniak@xakep.ru> |
---|---|
date | Sat Jan 23 09:22:02 2016 +0100 (2016-01-23) |
parents | 5e26ab6bd360 |
children | d0c0682403b4 |
rev | line source |
---|---|
pankso@255 | 1 # SliTaz package receipt. |
pankso@255 | 2 |
pascal@13351 | 3 PACKAGE="pcmanfm" |
psychomaniak@18150 | 4 VERSION="aa3ca1c" |
pankso@255 | 5 CATEGORY="system-tools" |
pankso@255 | 6 SHORT_DESC="Light and easy to use file manager." |
pankso@255 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@15000 | 8 LICENSE="GPL2" |
pankso@16276 | 9 TARBALL="$PACKAGE-$VERSION.tar.xz" |
pankso@12544 | 10 WEB_SITE="http://pcmanfm.sourceforge.net/" |
psychomaniak@18130 | 11 #WGET_URL="$SF_MIRROR/$PACKAGE/files/$TARBALL" |
psychomaniak@18130 | 12 WGET_URL="http://git.lxde.org/gitweb/?p=lxde/pcmanfm.git;a=snapshot;h=$VERSION;sf=txz" |
al@17501 | 13 TAGS="file-manager" |
pankso@16276 | 14 HOST_ARCH="i486 arm" |
pankso@12544 | 15 |
pankso@16276 | 16 SUGGESTED="gvfs" |
pankso@12481 | 17 DEPENDS="glibc-base glib libgio util-linux-uuid libxcb xcb-util expat \ |
al@16830 | 18 zlib fontconfig freetype gtk+ startup-notification dbus dbus-glib libfm-gtk" |
pankso@16276 | 19 BUILD_DEPENDS="gtk+-dev dbus-glib-dev dbus-dev startup-notification-dev \ |
psychomaniak@18130 | 20 libxcb-dev xcb-util-dev libfm-dev menu-cache-dev expat-dev libfm-gtk gtk-doc libtool" |
pankso@16276 | 21 |
pankso@16276 | 22 # Handle cross compilation. |
pankso@16276 | 23 case "$ARCH" in |
pankso@16276 | 24 i?86) BUILD_DEPENDS="$BUILD_DEPENDS shared-mime-info intltool gvfs-dev" ;; |
pankso@16276 | 25 esac |
pankso@255 | 26 |
pankso@255 | 27 # Rules to configure and make the package. |
pankso@255 | 28 compile_rules() |
pankso@255 | 29 { |
psychomaniak@18756 | 30 patch -p1 -R -i $stuff/fix_desktop_menus.patch |
al@18545 | 31 patch -p1 -i $stuff/pcmanfm-network-icon.patch |
psychomaniak@18130 | 32 ./autogen.sh |
pankso@13349 | 33 ./configure $CONFIGURE_ARGS && |
pankso@12544 | 34 make && make install |
pankso@255 | 35 } |
pankso@255 | 36 |
pankso@255 | 37 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@255 | 38 genpkg_rules() |
pankso@255 | 39 { |
pankso@13349 | 40 mkdir -p $fs/usr/share $fs/etc/xdg/pcmanfm |
pankso@12544 | 41 cp -a $install/usr/bin $fs/usr |
pankso@12544 | 42 cp -a $install/usr/share/pcmanfm $fs/usr/share |
pankso@13349 | 43 cp -a $stuff/default $fs/etc/xdg/pcmanfm |
pankso@12561 | 44 |
al@16715 | 45 # XDG autostart desktop file (lxsession will use it automatically) |
pankso@12561 | 46 cp -a $stuff/autostart $fs/etc/xdg |
al@17294 | 47 |
paul@16800 | 48 cp -a $install/usr/share/applications $fs/usr/share |
al@17294 | 49 |
al@17294 | 50 # Add custom actions |
al@17294 | 51 mkdir -p $fs/usr/share/file-manager |
al@17294 | 52 cp -a $stuff/actions $fs/usr/share/file-manager |
al@17294 | 53 cp -a $stuff/gvfs-mount-archive.sh $fs/usr/bin |
al@17294 | 54 chmod +x $fs/usr/bin/gvfs-mount-archive.sh |
pankso@255 | 55 } |