wok-current view libgooglepinyin/receipt @ rev 15190
lightdm: add Qt version lightdm-qt
| author | Aleksej Bobylev <al.bobylev@gmail.com> | 
|---|---|
| date | Wed Aug 28 17:57:06 2013 +0300 (2013-08-28) | 
| parents | 6e4cd2532814 | 
| children | 8f447cf2eee5 | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="libgooglepinyin"
     4 VERSION="0.1.1"
     5 CATEGORY="development"
     6 SHORT_DESC="A fork from google pinyin on android"
     7 MAINTAINER="liupeng <hipeng@yahoo.com>"
     8 BUILD_DEPENDS="cairo-dev pango-dev intltool cmake gtk+-dev gcc"
     9 DEPENDS=""
    10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
    11 WEB_SITE="http://code.google.com/p/libgooglepinyin/"
    12 WGET_URL="http://libgooglepinyin.googlecode.com/files/$TARBALL"
    14 # Rules to configure and make the package.
    15 compile_rules()
    16 {
    17 	mkdir -p $src/build
    18 	cd $src/build
    19 	cmake $src -DCMAKE_INSTALL_PREFIX=/usr || return 1
    20 	cd $src
    21 	make -C build || return 1
    22 	make install/fast -C build DESTDIR=$DESTDIR
    23 }
    25 # Rules to gen a SliTaz package suitable for Tazpkg.
    26 genpkg_rules()
    27 {
    28 	mkdir -p $fs/usr/lib/ $fs/usr/share/
    29 	cp -a $_pkg/usr/lib/libgooglepinyin.so* $fs/usr/lib/
    30 	cp -a $_pkg/usr/share/googlepinyin/ $fs/usr/share/
    31 }