wok view scim-pinyin/receipt @ rev 21213

updated scim-pinyin (0.5.91 -> 0.5.92)
author Hans-G?nter Theisgen
date Tue Apr 09 17:04:52 2019 +0100 (2019-04-09)
parents 20b9600c7f0c
children af1576aedc41
line source
1 # SliTaz package receipt.
3 PACKAGE="scim-pinyin"
4 VERSION="0.5.92"
5 CATEGORY="utilities"
6 SHORT_DESC="Chinese PinYin input for SCIM."
7 MAINTAINER="rocky@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="http://www.scim-im.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/scim/$TARBALL"
13 #WGET_URL="http://kent.dl.sourceforge.net/sourceforge/scim/$TARBALL"
15 DEPENDS="scim"
16 BUILD_DEPENDS="scim-dev gtk+-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 # while read file; do
22 # [ -f done.$file ] && continue
23 # echo "Apply $file..."
24 # patch -p1 < $stuff/$file || return 1
25 # touch done.$file
26 # done <<EOT
27 #cstring-gcc43.patch
28 #EOT
30 ./configure \
31 --prefix=/usr \
32 --mandir=/usr/share/man \
33 --infodir=/usr/share/info \
34 --disable-static \
35 $CONFIGURE_ARGS &&
36 make -j 1 &&
37 make DESTDIR=$DESTDIR install
38 }
40 # Rules to gen a SliTaz package suitable for Tazpkg.
41 genpkg_rules()
42 {
43 mkdir -p $fs/usr/share
45 cp -a $install/usr/lib $fs/usr
46 cp -a $install/usr/share/scim $fs/usr/share
48 find $fs/usr/lib -name '*.la' -exec rm {} \;
49 }