wok view menu-cache/receipt @ rev 17835

pulseaudio: stop dbus boot msg error
author Richard Dunbar <mojo@slitaz.org>
date Mon Mar 23 00:00:29 2015 -0400 (2015-03-23)
parents b924a72615fe
children c73f683146cf
line source
1 # SliTaz package receipt.
3 PACKAGE="menu-cache"
4 VERSION="1.0.0-rc1"
5 CATEGORY="x-window"
6 SHORT_DESC="Library used to read freedesktop.org menus"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://github.com/lxde/menu-cache"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="https://github.com/lxde/$PACKAGE/archive/$VERSION.tar.gz"
12 HOST_ARCH="i486 arm"
14 DEPENDS="glib glibc-base libffi libfm libgio pcre zlib" # slitaz-menus ?
15 BUILD_DEPENDS="wget cacerts automake gtk-doc libtool libfm-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./autogen.sh &&
21 ./configure \
22 --prefix=/usr \
23 --sysconfdir=/etc \
24 --libexecdir=/usr/lib \
25 $CONFIGURE_ARGS &&
26 make && make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 cp -a $install/usr/lib/menu-cache $fs/usr/lib
35 }