wok view spacefm/receipt @ rev 16568

spacefm: remove ash hardcode edit
author Richard Dunbar <mojo@slitaz.org>
date Thu May 01 21:16:08 2014 +0000 (2014-05-01)
parents db124a8e80fe
children 533c0cab6960
line source
1 # SliTaz package receipt.
3 PACKAGE="spacefm"
4 VERSION="0.9.4"
5 CATEGORY="system-tools"
6 SHORT_DESC="Light, fast and easy to use file manager."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="http://ignorantguru.github.io/spacefm/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/files/$TARBALL"
13 DEPENDS="glibc-base glib libgio util-linux-uuid libxcb xcb-util expat \
14 gtk+ startup-notification dbus dbus-glib gdk-pixbuf udev bash udevil"
15 BUILD_DEPENDS="gtk+-dev dbus-glib-dev dbus-dev startup-notification-dev \
16 libxcb-dev xcb-util-dev expat-dev gdk-pixbuf-dev intltool udev-dev \
17 coreutils-file-special"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 cd $src
23 patch -Np1 -i $stuff/prefdlg.ui.diff
24 patch -Np1 -i $stuff/settings.h.diff
25 patch -Np1 -i $stuff/vfs-file-task.c.diff
27 ./configure \
28 --with-preferable-sudo="/usr/bin/subox" \
29 --disable-pixmaps \
30 $CONFIGURE_ARGS &&
31 make && make install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr/share $fs/etc/spacefm
38 cp -a $install/usr/bin $fs/usr
39 for d in applications mime icons spacefm
40 do
41 cp -a $install/usr/share/$d $fs/usr/share
42 done
43 cp $stuff/spacefm.conf $fs/etc/spacefm
44 cp -a $stuff/xdg $fs/etc
45 # Faenza --> SliTaz
46 mv $fs/usr/share/icons/Faenza $fs/usr/share/icons/SliTaz
47 rm -rf $fs/usr/share/icons/hicolor/128x128
48 # /bin/bash --> /bin/sh
49 sed -i s'|/bin/bash|/bin/sh|'g $fs/usr/bin/spacefm-auth
50 }