wok annotate fcitx-googlepinyin/receipt @ rev 12039

Up: tazlito (4.4) - Better russian dolls support and fixes
author Christophe Lincoln <pankso@slitaz.org>
date Wed Mar 07 13:55:33 2012 +0100 (2012-03-07)
parents 3af70ef3a7ac
children 7bb096863642
rev   line source
hipeng@10960 1 # SliTaz package receipt.
hipeng@10960 2
hipeng@10960 3 PACKAGE="fcitx-googlepinyin"
hipeng@10965 4 VERSION="0.1.3"
hipeng@10960 5 CATEGORY="x-window"
hipeng@10960 6 SHORT_DESC="Googlepinyin Wrapper for Fcitx"
hipeng@10960 7 MAINTAINER="liupeng <hipeng@yahoo.com>"
hipeng@10960 8 DEPENDS="fcitx libgooglepinyin"
hipeng@10960 9 BUILD_DEPENDS="cairo-dev pango-dev intltool cmake gtk+-dev gcc fcitx fcitx-dev libgooglepinyin-dev"
hipeng@10960 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
hipeng@10960 11 WEB_SITE="http://code.google.com/p/fcitx"
hipeng@10960 12 WGET_URL="http://fcitx.googlecode.com/files/$TARBALL"
hipeng@10960 13
hipeng@10960 14 # Rules to configure and make the package.
hipeng@10960 15 compile_rules()
hipeng@10960 16 {
slaxemulator@10962 17 mkdir -p $src/build
slaxemulator@10962 18 cd $src/build
slaxemulator@10962 19 cmake $src -DCMAKE_INSTALL_PREFIX=/usr || return 1
hipeng@10960 20 cd $src
hipeng@10960 21 make -C build || return 1
slaxemulator@10962 22 make install/fast -C build DESTDIR=$DESTDIR
hipeng@10960 23 }
hipeng@10960 24
hipeng@10960 25 # Rules to gen a SliTaz package suitable for Tazpkg.
hipeng@10960 26 genpkg_rules()
hipeng@10960 27 {
hipeng@10960 28 mkdir -p $fs/usr/share/fcitx/ $fs/usr/lib/fcitx/
hipeng@10960 29 cp -a $_pkg/usr/share/fcitx/addon/ $fs/usr/share/fcitx/
hipeng@10960 30 cp -a $_pkg/usr/share/fcitx/configdesc/ $fs/usr/share/fcitx/
hipeng@10960 31 cp -a $_pkg/usr/lib/fcitx/fcitx-googlepinyin* $fs/usr/lib/fcitx/
hipeng@10960 32 }
hipeng@10960 33