wok-6.x annotate spacefm/receipt @ rev 19812
matchbox-window-manager-2: update bdeps
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Feb 28 09:16:02 2017 +0100 (2017-02-28) |
parents | 533c0cab6960 |
children | 19141648d795 |
rev | line source |
---|---|
pankso@11898 | 1 # SliTaz package receipt. |
pankso@11898 | 2 |
pankso@11898 | 3 PACKAGE="spacefm" |
devl547@16200 | 4 VERSION="0.9.4" |
pankso@11898 | 5 CATEGORY="system-tools" |
pankso@11898 | 6 SHORT_DESC="Light, fast and easy to use file manager." |
pankso@11898 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@14999 | 8 LICENSE="GPL3" |
pankso@11898 | 9 TARBALL="$PACKAGE-$VERSION.tar.xz" |
pankso@15959 | 10 WEB_SITE="http://ignorantguru.github.io/spacefm/" |
pankso@11898 | 11 WGET_URL="$SF_MIRROR/$PACKAGE/files/$TARBALL" |
al@17501 | 12 TAGS="file-manager" |
pankso@11898 | 13 |
pankso@12481 | 14 DEPENDS="glibc-base glib libgio util-linux-uuid libxcb xcb-util expat \ |
pankso@16519 | 15 gtk+ startup-notification dbus dbus-glib gdk-pixbuf udev bash udevil" |
pankso@11898 | 16 BUILD_DEPENDS="gtk+-dev dbus-glib-dev dbus-dev startup-notification-dev \ |
pankso@13497 | 17 libxcb-dev xcb-util-dev expat-dev gdk-pixbuf-dev intltool udev-dev \ |
pankso@13497 | 18 coreutils-file-special" |
pankso@11898 | 19 |
pankso@11898 | 20 # Rules to configure and make the package. |
pankso@11898 | 21 compile_rules() |
pankso@11898 | 22 { |
al@17261 | 23 patch -Np1 -i $stuff/prefdlg.ui.diff |
al@17261 | 24 patch -Np1 -i $stuff/settings.h.diff |
pascal@13788 | 25 patch -Np1 -i $stuff/vfs-file-task.c.diff |
pascal@13788 | 26 |
pankso@11898 | 27 ./configure \ |
pankso@15959 | 28 --with-preferable-sudo="/usr/bin/subox" \ |
pankso@13497 | 29 --disable-pixmaps \ |
pankso@11898 | 30 $CONFIGURE_ARGS && |
pankso@11898 | 31 make && make install |
pankso@11898 | 32 } |
pankso@11898 | 33 |
pankso@11898 | 34 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@11898 | 35 genpkg_rules() |
pankso@11898 | 36 { |
pankso@13607 | 37 mkdir -p $fs/usr/share $fs/etc/spacefm |
pankso@11898 | 38 cp -a $install/usr/bin $fs/usr |
al@17261 | 39 for d in applications icons spacefm; do |
pankso@11898 | 40 cp -a $install/usr/share/$d $fs/usr/share |
pankso@11898 | 41 done |
pankso@11898 | 42 cp $stuff/spacefm.conf $fs/etc/spacefm |
pankso@13607 | 43 cp -a $stuff/xdg $fs/etc |
pankso@13497 | 44 # Faenza --> SliTaz |
pankso@13497 | 45 mv $fs/usr/share/icons/Faenza $fs/usr/share/icons/SliTaz |
pankso@13607 | 46 rm -rf $fs/usr/share/icons/hicolor/128x128 |
pankso@13607 | 47 # /bin/bash --> /bin/sh |
pankso@13607 | 48 sed -i s'|/bin/bash|/bin/sh|'g $fs/usr/bin/spacefm-auth |
pankso@11898 | 49 } |