# HG changeset patch # User Hans-G?nter Theisgen # Date 1648196718 -3600 # Node ID ea983d0c7e7465586fe50c654c5b477c30164258 # Parent 5a464307b47454edb1871ac392c10edee4cec68b created recipes for libunibreak and libunibreak-dev diff -r 5a464307b474 -r ea983d0c7e74 libunibreak-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libunibreak-dev/receipt Fri Mar 25 09:25:18 2022 +0100 @@ -0,0 +1,15 @@ +# SliTaz package receipt. + +PACKAGE="libunibreak-dev" +VERSION="5.0" +CATEGORY="development" +SHORT_DESC="Implementation of the line breaking algorithm - development files." +MAINTAINER="maintainer@slitaz.org" +LICENSE="zlib/libpng" +WEB_SITE="https://github.com/adah1972/libunibreak/" + +WANTED="libunibreak" +genpkg_rules() +{ + get_dev_files +} diff -r 5a464307b474 -r ea983d0c7e74 libunibreak/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libunibreak/description.txt Fri Mar 25 09:25:18 2022 +0100 @@ -0,0 +1,3 @@ +Libunibreak is an implementation of the line breaking and word breaking +algorithms as described in Unicode Standard Annex 14 and Unicode Standard +Annex 29. diff -r 5a464307b474 -r ea983d0c7e74 libunibreak/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libunibreak/receipt Fri Mar 25 09:25:18 2022 +0100 @@ -0,0 +1,26 @@ +# SliTaz package receipt. + +PACKAGE="libunibreak" +VERSION="5.0" +CATEGORY="libs" +SHORT_DESC="Implementation of the line breaking algorithm." +MAINTAINER="maintainer@slitaz.org" +LICENSE="zlib/libpng" +WEB_SITE="https://github.com/adah1972/libunibreak/" + +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://github.com/adah1972/libunibreak/releases/download/libunibreak_${VERSION//./_}/$TARBALL" + +#SPLIT="$PACKAGE-dev" + +compile_rules() +{ + ./configure $CONFIGURE_ARGS && + make && + make install +} + +genpkg_rules() +{ + cook_copy_files *.so* +} diff -r 5a464307b474 -r ea983d0c7e74 lyx-locales/receipt --- a/lyx-locales/receipt Fri Mar 25 09:07:22 2022 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,19 +0,0 @@ -# SliTaz package receipt. - -PACKAGE="lyx-locales" -VERSION="2.3.6.1" -CATEGORY="localization" -SHORT_DESC="Locale files for LyX." -MAINTAINER="al.bobylev@gmail.com" -LICENSE="GPL2" -WEB_SITE="https://www.lyx.org" - -DEPENDS="lyx" -WANTED="lyx" - -# Rules to gen a SliTaz package suitable for Tazpkg. -genpkg_rules() -{ - mkdir -p $fs/usr/share - cp -a $install/usr/share/locale $fs/usr/share -}