wok view libunique/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 b304b521220c
children 418686f0c6cd
line source
1 # SliTaz package receipt.
4 PACKAGE="libunique"
5 VERSION="1.1.6"
6 CATEGORY="development"
7 SHORT_DESC="Library for writing single instance application."
8 MAINTAINER="erjo@slitaz.org"
9 DEPENDS="gtk+ cairo dbus-glib"
10 BUILD_DEPENDS="pkg-config gtk+-dev glib-dev perl expat-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WEB_SITE="http://live.gnome.org/LibUnique"
13 WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make && 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 }