wok-undigest view mate-file-manager/receipt @ rev 1223

copied libxext recipe from wok-next
author Hans-G?nter Theisgen
date Fri Nov 15 17:38:29 2019 +0100 (2019-11-15)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="mate-file-manager"
4 VERSION="1.4.0"
5 CATEGORY="x-window"
6 SHORT_DESC="MATE Desktop file manager (caja)."
7 MAINTAINER="pankso@slitaz.org"
8 WEB_SITE="http://mate-desktop.org"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WGET_URL="http://pub.mate-desktop.org/releases/1.4/$TARBALL"
12 DEPENDS="mate-common glib gtk+ libxml2 gobject-introspection mate-conf \
13 mate-desktop libunique"
14 BUILD_DEPENDS="autoconf automake libtool gtk-doc mate-common glib-dev \
15 gtk+-dev libxml2-dev gobject-introspection-dev mate-conf-dev mate-desktop-dev \
16 libunique-dev startup-notification-dev mate-corba-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 ./autogen.sh \
23 --disable-static \
24 --sysconfdir=/etc \
25 --localstatedir=/var \
26 --libexecdir=/usr/lib/mate-file-manager \
27 $CONFIGURE_ARGS &&
28 make && make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib $fs/usr/share
35 cp -a $install/etc $fs
36 cp -a $install/usr/bin $fs/usr
37 cp -a $install/usr/lib/*.so* $fs/usr/lib
38 cp -a $install/usr/lib/mate-file-manager $fs/usr/lib
39 cp -a $install/usr/lib/girepository-1.0 $fs/usr/lib
40 # /usr/share
41 cp -a $install/usr/share/caja $fs/usr/share
42 cp -a $install/usr/share/gir-1.0 $fs/usr/share
43 cp -a $install/usr/share/icons $fs/usr/share
44 cp -a $install/usr/share/mime $fs/usr/share
45 cp -a $install/usr/share/pixmaps $fs/usr/share
46 }