wok annotate spacefm/receipt @ rev 14079

linux: use the ondemand governor
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Feb 22 17:14:40 2013 +0100 (2013-02-22)
parents 4ca9b276a61c
children 2b9f96603415
rev   line source
pankso@11898 1 # SliTaz package receipt.
pankso@11898 2
pankso@11898 3 PACKAGE="spacefm"
monghitri@14077 4 VERSION="0.8.6"
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"
pankso@11898 8 TARBALL="$PACKAGE-$VERSION.tar.xz"
pankso@11898 9 WEB_SITE="http://spacefm.sourceforge.net/"
pankso@11898 10 WGET_URL="$SF_MIRROR/$PACKAGE/files/$TARBALL"
pankso@13497 11 SUGGESTED="udevil"
pankso@11898 12
pankso@12481 13 DEPENDS="glibc-base glib libgio util-linux-uuid libxcb xcb-util expat \
pankso@13497 14 gtk+ startup-notification dbus dbus-glib gdk-pixbuf udev"
pankso@11898 15 BUILD_DEPENDS="gtk+-dev dbus-glib-dev dbus-dev startup-notification-dev \
pankso@13497 16 libxcb-dev xcb-util-dev expat-dev gdk-pixbuf-dev intltool udev-dev \
pankso@13497 17 coreutils-file-special"
pankso@11898 18
pankso@11898 19 # Rules to configure and make the package.
pankso@11898 20 compile_rules()
pankso@11898 21 {
pankso@11898 22 cd $src
pascal@13788 23 patch -Np1 -i $stuff/prefdlg.ui.diff
pascal@13788 24 patch -Np1 -i $stuff/settings.h.diff
pascal@13788 25 patch -Np1 -i $stuff/vfs-file-task.c.diff
pascal@13788 26
pankso@13630 27 # We dont want bash hardcoded
pascal@13788 28 sed -i s'|/bin/bash|/bin/sh|'g src/*.c src/*.h src/*/*.c src/*/*.h
pascal@13788 29
pankso@11898 30 ./configure \
pascal@13788 31 --with-preferable-sudo="/usr/bin/tazbox" \
pankso@13497 32 --disable-pixmaps \
pankso@11898 33 $CONFIGURE_ARGS &&
pankso@11898 34 make && make install
pankso@11898 35 }
pankso@11898 36
pankso@11898 37 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@11898 38 genpkg_rules()
pankso@11898 39 {
pankso@13607 40 mkdir -p $fs/usr/share $fs/etc/spacefm
pankso@11898 41 cp -a $install/usr/bin $fs/usr
pankso@13497 42 for d in applications mime icons spacefm
pankso@11898 43 do
pankso@11898 44 cp -a $install/usr/share/$d $fs/usr/share
pankso@11898 45 done
pankso@11898 46 cp $stuff/spacefm.conf $fs/etc/spacefm
pankso@13607 47 cp -a $stuff/xdg $fs/etc
pankso@13497 48 # Faenza --> SliTaz
pankso@13497 49 mv $fs/usr/share/icons/Faenza $fs/usr/share/icons/SliTaz
pankso@13607 50 rm -rf $fs/usr/share/icons/hicolor/128x128
pankso@13607 51 # /bin/bash --> /bin/sh
pankso@13607 52 sed -i s'|/bin/bash|/bin/sh|'g $fs/usr/bin/spacefm-auth
pankso@11898 53 }