wok view menu-cache/receipt @ rev 16719

open-folder-menu.sh: fix open users home folder
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 01 11:42:05 2014 +0000 (2014-06-01)
parents 380ffe05937a
children b924a72615fe
line source
1 # SliTaz package receipt.
3 PACKAGE="menu-cache"
4 VERSION="0.3.2"
5 CATEGORY="x-window"
6 SHORT_DESC="Standard compliant menu library used by LXDE."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://lxde.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/lxde/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="glibc-base glib libgio slitaz-menus"
15 BUILD_DEPENDS="glib-dev libgio-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --prefix=/usr \
22 --libexecdir=/usr/lib/menu-cache \
23 --sysconfdir=/etc \
24 $CONFIGURE_ARGS &&
25 make && make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 cp -a $install/usr/lib/menu-cache $fs/usr/lib
34 }