wok view cairomm/receipt @ rev 7377

Modify locale-zh_CN to enable display Chinese Font correctly
author fireflyoo <lufeng369@gmail.com>
date Thu Nov 25 22:17:40 2010 +0000 (2010-11-25)
parents d1e65b2e5f5f
children efb6fe9257f8
line source
1 # SliTaz package receipt.
3 PACKAGE="cairomm"
4 VERSION="1.8.4"
5 CATEGORY="x-window"
6 SHORT_DESC="2D graphics library (mm)."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="pixman cairo libsigc++ xcb-util gcc-lib-base"
9 BUILD_DEPENDS="pixman-dev cairo-dev libsigc++-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.cairographics.org/"
12 WGET_URL="http://cairographics.org/releases/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --mandir=/usr/share/man \
21 --with-html-dir=/usr/share/doc \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg 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 $_pkg/usr/lib/*.so* $fs/usr/lib
32 }