wok view scim-tables/receipt @ rev 5395

Up: btrfs-progs (0.19)
author Christopher Rogers <slaxemulator@gmail.com>
date Sun May 02 02:51:13 2010 +0000 (2010-05-02)
parents 2b2c37045605
children 0f39875b5d38
line source
1 # SliTaz package receipt.
3 PACKAGE="scim-tables"
4 VERSION="0.5.9"
5 CATEGORY="meta"
6 SHORT_DESC="SCIM Generic Table Input Method module meta package."
7 MAINTAINER="rocky@slitaz.org"
8 DEPENDS="scim scim-tables-base scim-tables-ja scim-tables-ko scim-tables-zh scim-tables-additional"
9 BUILD_DEPENDS="scim-dev expat-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.scim-im.org/"
12 WGET_URL="$SF_MIRROR/scim/$TARBALL"
13 LOCALE=""
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr \
20 --mandir=/usr/share/man \
21 --disable-static \
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/var
31 for i in base ja ko zh additional
32 do
33 tazwok genpkg $PACKAGE-$i
34 done
35 }
37 clean_wok()
38 {
39 for i in base ja ko zh additional
40 do
41 tazwok clean $PACKAGE-$i
42 done
43 }