wok view thunar/receipt @ rev 20671

Update some WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 24 11:33:03 2019 +0100 (2019-01-24)
parents 5d53e8ccbc8d
children cfb29dc98daa
line source
1 # SliTaz package receipt.
3 PACKAGE="thunar"
4 VERSION="1.4.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Thunar File Manager"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 SOURCE="Thunar"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="https://www.xfce.org"
12 WGET_URL="http://archive.xfce.org/src/xfce/$PACKAGE/${VERSION%.*}/$TARBALL"
13 TAGS="file-manager"
15 DEPENDS="libpng jpeg gtk+ libxfce4util dbus-glib libexo pcre libexif libgudev \
16 gamin libxfce4ui startup-notification util-linux-uuid libnotify"
17 BUILD_DEPENDS="libpng-dev jpeg-dev gtk+-dev libxml2-dev dbus-glib-dev \
18 libexo-dev zlib-dev intltool libgudev-dev libxfce4ui-dev libxfce4util-dev xcb-util-dev \
19 startup-notification-dev util-linux-uuid-dev libnotify-dev"
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 ./configure \
25 --prefix=/usr \
26 --sysconfdir=/etc \
27 --enable-dbus \
28 --enable-startup-notification \
29 --enable-notifications \
30 --enable-gio-unix \
31 --enable-gudev \
32 --libexecdir=/usr/lib \
33 --enable-debug=no \
34 $CONFIGURE_ARGS &&
35 make && make install
36 }
38 # Rules to gen a SliTaz package suitable for Tazpkg.
39 genpkg_rules()
40 {
41 mkdir -p \
42 $fs/usr/share \
43 $fs/usr/lib/thunarx-2
45 cp -a $install/etc $fs
46 cp -a $install/usr/bin $fs/usr
48 cp -a $install/usr/lib/Thunar $fs/usr/lib
49 cp -a $install/usr/lib/*.so* $fs/usr/lib
50 cp -a $install/usr/lib/thunarx-2/*.so* $fs/usr/lib/thunarx-2
51 cp -a $install/usr/share/dbus-1 $fs/usr/share
53 cp -a $install/usr/share/applications $fs/usr/share
54 cp -a $install/usr/share/icons $fs/usr/share
55 cp -a $install/usr/share/pixmaps $fs/usr/share
56 cp -a $install/usr/share/Thunar $fs/usr/share
57 }