wok view libmatchbox/receipt @ rev 10837

Add libmatchbox (Match may be used for kids or small device desktop)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Jun 08 23:20:29 2011 +0200 (2011-06-08)
parents
children 911259cbc4cc
line source
1 # SliTaz package receipt.
3 PACKAGE="libmatchbox"
4 VERSION="1.9"
5 CATEGORY="x-window"
6 SHORT_DESC="Matchbox shared library."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://matchbox-project.org/"
10 WGET_URL="${WEB_SITE}sources/$PACKAGE/1.9/$TARBALL"
12 DEPENDS="pango"
13 BUILD_DEPENDS="pango-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 #--enable-xsettings
20 ./configure \
21 --enable-pango \
22 --enable-jpeg \
23 $CONFIGURE_ARGS &&
24 make && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 }