wok view libmatchbox/receipt @ rev 12481

Rename linux-util-ng to util-linux in all packages
author Christophe Lincoln <pankso@slitaz.org>
date Mon Apr 23 16:30:27 2012 +0200 (2012-04-23)
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 }