wok diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/anthy/receipt	Wed Jan 19 08:06:16 2022 +0100
     1.3 @@ -0,0 +1,37 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="anthy"
     1.7 +VERSION="9100h"
     1.8 +CATEGORY="utilities"
     1.9 +SHORT_DESC="Hiragana text to Kana Kanji mixed text Japanese input method."
    1.10 +MAINTAINER="maintainer@slitaz.org"
    1.11 +LICENSE="GPL2+"
    1.12 +WEB_SITE="https://anthy.osdn.jp/"
    1.13 +
    1.14 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.15 +WGET_URL="https://osdn.net/projects/$PACKAGE/downloads/37536/$TARBALL"
    1.16 +
    1.17 +BUILD_DEPENDS="libtool"
    1.18 +
    1.19 +CONFIG_FILES="/etc/anthy-conf"
    1.20 +
    1.21 +# Rules to configure and make the package.
    1.22 +compile_rules()
    1.23 +{
    1.24 +	./configure				\
    1.25 +		--prefix=/usr			\
    1.26 +		$CONFIGURE_ARGS &&
    1.27 +	make &&
    1.28 +	make DESTDIR=$DESTDIR install
    1.29 +}
    1.30 +
    1.31 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.32 +genpkg_rules()
    1.33 +{
    1.34 +	mkdir -p $fs/etc
    1.35 +
    1.36 +	cp $install/usr/etc/*	$fs/etc
    1.37 +	cook_copy_folders	bin
    1.38 +	cook_copy_folders	share
    1.39 +	cook_copy_files		*.so*
    1.40 +}