# HG changeset patch # User Hans-G?nter Theisgen # Date 1642575976 -3600 # Node ID 8c77592c608a105bf30395eb0d949401808d79af # Parent b569b85b0fb98d972979b5b3c273fff12f3606ca created recipes for anthy, anthy-dev, scim-anthy and scim-anthy-lang diff -r b569b85b0fb9 -r 8c77592c608a anthy-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/anthy-dev/receipt Wed Jan 19 08:06:16 2022 +0100 @@ -0,0 +1,20 @@ +# SliTaz package receipt. + +PACKAGE="anthy-dev" +VERSION="9100h" +CATEGORY="utilities" +SHORT_DESC="Hiragana text to Kana Kanji mixed text Japanese input method - development files." +MAINTAINER="maintainer@slitaz.org" +LICENSE="GPL2+" +WEB_SITE="https://anthy.osdn.jp/" + +DEPENDS="anthy" +WANTED="anthy" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cook_copy_folders include + cook_copy_folders pkgconfig + cook_copy_files *.*a +} diff -r b569b85b0fb9 -r 8c77592c608a anthy/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/anthy/description.txt Wed Jan 19 08:06:16 2022 +0100 @@ -0,0 +1,2 @@ +Anthy is a system for Japanese input method. +It converts Hiragana text to Kana Kanji mixed text. diff -r b569b85b0fb9 -r 8c77592c608a anthy/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/anthy/receipt Wed Jan 19 08:06:16 2022 +0100 @@ -0,0 +1,37 @@ +# SliTaz package receipt. + +PACKAGE="anthy" +VERSION="9100h" +CATEGORY="utilities" +SHORT_DESC="Hiragana text to Kana Kanji mixed text Japanese input method." +MAINTAINER="maintainer@slitaz.org" +LICENSE="GPL2+" +WEB_SITE="https://anthy.osdn.jp/" + +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://osdn.net/projects/$PACKAGE/downloads/37536/$TARBALL" + +BUILD_DEPENDS="libtool" + +CONFIG_FILES="/etc/anthy-conf" + +# Rules to configure and make the package. +compile_rules() +{ + ./configure \ + --prefix=/usr \ + $CONFIGURE_ARGS && + make && + make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/etc + + cp $install/usr/etc/* $fs/etc + cook_copy_folders bin + cook_copy_folders share + cook_copy_files *.so* +} diff -r b569b85b0fb9 -r 8c77592c608a ctypes.sh/receipt --- a/ctypes.sh/receipt Mon Jan 17 18:18:17 2022 +0000 +++ b/ctypes.sh/receipt Wed Jan 19 08:06:16 2022 +0100 @@ -13,7 +13,7 @@ WGET_URL="https://github.com/taviso/$PACKAGE/releases/download/v$VERSION/$TARBALL" DEPENDS="bash libffi" -BUILD_DEPENDS="libffi-dev" +BUILD_DEPENDS="libffi-dev libtool" HOST_ARCH="i486 arm" diff -r b569b85b0fb9 -r 8c77592c608a scim-anthy-lang/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/scim-anthy-lang/receipt Wed Jan 19 08:06:16 2022 +0100 @@ -0,0 +1,17 @@ +# SliTaz package receipt. + +PACKAGE="scim-anthy-lang" +VERSION="1.3.2" +CATEGORY="utilities" +SHORT_DESC="Japanese input method module for SCIM - localised messages." +MAINTAINER="maintainer@slitaz.org" +LICENSE="GPL2" +WEB_SITE="https://github.com/scim-im/scim-anthy" + +WANTED="scim-anthy" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cook_copy_folders locale +} diff -r b569b85b0fb9 -r 8c77592c608a scim-anthy/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/scim-anthy/description.txt Wed Jan 19 08:06:16 2022 +0100 @@ -0,0 +1,10 @@ +Scim-anthy is a SCIM IMEngine module for anthy. + +SCIM is Smart Common Input Method platform, it provides user friendly, +full featured user interface and development platform to make input method +developer's life easier. + +Anthy is a system for Japanese input method. +It converts Hiragana text to Kana Kanji mixed text. + +Scim-anthy provides some useful user interfaces for Anthy using SCIM. diff -r b569b85b0fb9 -r 8c77592c608a scim-anthy/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/scim-anthy/receipt Wed Jan 19 08:06:16 2022 +0100 @@ -0,0 +1,33 @@ +# SliTaz package receipt. + +PACKAGE="scim-anthy" +VERSION="1.3.2" +CATEGORY="utilities" +SHORT_DESC="Japanese input method module for SCIM." +MAINTAINER="maintainer@slitaz.org" +LICENSE="GPL2" +WEB_SITE="https://github.com/scim-im/scim-anthy" + +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="$WEB_SITE/archive/refs/tags/v$VERSION.tar.gz" + +DEPENDS="anthy scim" +BUILD_DEPENDS="anthy-dev automake gtk+-dev libtool scim-dev" + +# Rules to configure and make the package. +compile_rules() +{ + ./bootstrap && + ./configure \ + --prefix=/usr \ + $CONFIGURE_ARGS && + make && + make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cook_copy_folders scim + cook_copy_files *.so* +}