wok-current annotate spacefm/receipt @ rev 22353
podofo: no parallel make
author | Hans-G?nter Theisgen |
---|---|
date | Wed Nov 20 16:46:03 2019 +0100 (2019-11-20) |
parents | 5d53e8ccbc8d |
children | 21b253037828 |
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 |
pascal@22171 | 27 export LDFLAGS="$LDFLAGS -lxcb-util" |
pankso@11898 | 28 ./configure \ |
pankso@15959 | 29 --with-preferable-sudo="/usr/bin/subox" \ |
pankso@13497 | 30 --disable-pixmaps \ |
pankso@11898 | 31 $CONFIGURE_ARGS && |
pankso@11898 | 32 make && make install |
pankso@11898 | 33 } |
pankso@11898 | 34 |
pankso@11898 | 35 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@11898 | 36 genpkg_rules() |
pankso@11898 | 37 { |
pankso@13607 | 38 mkdir -p $fs/usr/share $fs/etc/spacefm |
pankso@11898 | 39 cp -a $install/usr/bin $fs/usr |
al@17261 | 40 for d in applications icons spacefm; do |
pankso@11898 | 41 cp -a $install/usr/share/$d $fs/usr/share |
pankso@11898 | 42 done |
pankso@11898 | 43 cp $stuff/spacefm.conf $fs/etc/spacefm |
pankso@13607 | 44 cp -a $stuff/xdg $fs/etc |
pankso@13497 | 45 # Faenza --> SliTaz |
pankso@13497 | 46 mv $fs/usr/share/icons/Faenza $fs/usr/share/icons/SliTaz |
pankso@13607 | 47 rm -rf $fs/usr/share/icons/hicolor/128x128 |
pankso@13607 | 48 # /bin/bash --> /bin/sh |
pankso@13607 | 49 sed -i s'|/bin/bash|/bin/sh|'g $fs/usr/bin/spacefm-auth |
pankso@11898 | 50 } |