wok view spacefm/receipt @ rev 17501

Normalize tags "file-manager", "web-browser", "text-editor", "terminal", and "window-manager" according to tazx.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Jan 08 02:04:05 2015 +0200 (2015-01-08)
parents 533c0cab6960
children 19141648d795
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"
12 TAGS="file-manager"
14 DEPENDS="glibc-base glib libgio util-linux-uuid libxcb xcb-util expat \
15 gtk+ startup-notification dbus dbus-glib gdk-pixbuf udev bash udevil"
16 BUILD_DEPENDS="gtk+-dev dbus-glib-dev dbus-dev startup-notification-dev \
17 libxcb-dev xcb-util-dev expat-dev gdk-pixbuf-dev intltool udev-dev \
18 coreutils-file-special"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
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 icons spacefm; do
40 cp -a $install/usr/share/$d $fs/usr/share
41 done
42 cp $stuff/spacefm.conf $fs/etc/spacefm
43 cp -a $stuff/xdg $fs/etc
44 # Faenza --> SliTaz
45 mv $fs/usr/share/icons/Faenza $fs/usr/share/icons/SliTaz
46 rm -rf $fs/usr/share/icons/hicolor/128x128
47 # /bin/bash --> /bin/sh
48 sed -i s'|/bin/bash|/bin/sh|'g $fs/usr/bin/spacefm-auth
49 }