wok view anthy/receipt @ rev 24309

created recipes for anthy, anthy-dev, scim-anthy and scim-anthy-lang
author Hans-G?nter Theisgen
date Wed Jan 19 08:06:16 2022 +0100 (2022-01-19)
parents
children 0c04fc34847a
line source
1 # SliTaz package receipt.
3 PACKAGE="anthy"
4 VERSION="9100h"
5 CATEGORY="utilities"
6 SHORT_DESC="Hiragana text to Kana Kanji mixed text Japanese input method."
7 MAINTAINER="maintainer@slitaz.org"
8 LICENSE="GPL2+"
9 WEB_SITE="https://anthy.osdn.jp/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://osdn.net/projects/$PACKAGE/downloads/37536/$TARBALL"
14 BUILD_DEPENDS="libtool"
16 CONFIG_FILES="/etc/anthy-conf"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --prefix=/usr \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/etc
33 cp $install/usr/etc/* $fs/etc
34 cook_copy_folders bin
35 cook_copy_folders share
36 cook_copy_files *.so*
37 }