# HG changeset patch # User Hans-G?nter Theisgen # Date 1677254740 -3600 # Node ID f1a091c5039706f13b9bb005f5b665d1b1acd044 # Parent 11e12a2c0eb885273a848557417fd9ce8a3a3bd8 created recipes for unibilium and unibilium-dev 2.1.1 diff -r 11e12a2c0eb8 -r f1a091c50397 unibilium-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/unibilium-dev/receipt Fri Feb 24 17:05:40 2023 +0100 @@ -0,0 +1,17 @@ +# SliTaz package receipt. + +PACKAGE="unibilium-dev" +VERSION="2.1.1" +CATEGORY="development" +SHORT_DESC="Terminfo parsing library - development files." +MAINTAINER="maintainer@slitaz.org" +LICENSE="LGPL-3+" +WEB_SITE="https://github.com/neovim/unibilium/" + +WANTED="unibilium" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + get_dev_files +} diff -r 11e12a2c0eb8 -r f1a091c50397 unibilium/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/unibilium/description.txt Fri Feb 24 17:05:40 2023 +0100 @@ -0,0 +1,5 @@ +Unibilium is a very basic terminfo library. +It can read and write ncurses-style terminfo files, +and it can interpret terminfo format strings. +It doesn't depend on curses or any other library. +It also doesn't use global variables, so it should be thread-safe. diff -r 11e12a2c0eb8 -r f1a091c50397 unibilium/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/unibilium/receipt Fri Feb 24 17:05:40 2023 +0100 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="unibilium" +VERSION="2.1.1" +CATEGORY="libs" +TAGS="terminfo" +SHORT_DESC="Terminfo parsing library." +MAINTAINER="maintainer@slitaz.org" +LICENSE="LGPL-3+" +WEB_SITE="https://github.com/neovim/unibilium/" + +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="${WEB_SITE}archive/v$VERSION.tar.gz" + +BUILD_DEPENDS="libtool perl" + +# Rules to configure and make the package. +compile_rules() +{ + make PREFIX=/usr && + make install PREFIX=/usr +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cook_copy_files *.so* +}