wok view scim-tables/receipt @ rev 10433

cyrus-sasl: fix bdeps (need openssl-dev + rm libkrb5, if krb5 support is needed we must add krb5-dev to bdeps)
author Christophe Lincoln <pankso@slitaz.org>
date Wed May 25 00:25:23 2011 +0200 (2011-05-25)
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 }