wok rev 25521
created recipes for unibilium and unibilium-dev 2.1.1
author | Hans-G?nter Theisgen |
---|---|
date | Fri Feb 24 17:05:40 2023 +0100 (20 months ago) |
parents | 11e12a2c0eb8 |
children | beeeb88edf2a |
files | unibilium-dev/receipt unibilium/description.txt unibilium/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/unibilium-dev/receipt Fri Feb 24 17:05:40 2023 +0100 1.3 @@ -0,0 +1,17 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="unibilium-dev" 1.7 +VERSION="2.1.1" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="Terminfo parsing library - development files." 1.10 +MAINTAINER="maintainer@slitaz.org" 1.11 +LICENSE="LGPL-3+" 1.12 +WEB_SITE="https://github.com/neovim/unibilium/" 1.13 + 1.14 +WANTED="unibilium" 1.15 + 1.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.17 +genpkg_rules() 1.18 +{ 1.19 + get_dev_files 1.20 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/unibilium/description.txt Fri Feb 24 17:05:40 2023 +0100 2.3 @@ -0,0 +1,5 @@ 2.4 +Unibilium is a very basic terminfo library. 2.5 +It can read and write ncurses-style terminfo files, 2.6 +and it can interpret terminfo format strings. 2.7 +It doesn't depend on curses or any other library. 2.8 +It also doesn't use global variables, so it should be thread-safe.
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/unibilium/receipt Fri Feb 24 17:05:40 2023 +0100 3.3 @@ -0,0 +1,28 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="unibilium" 3.7 +VERSION="2.1.1" 3.8 +CATEGORY="libs" 3.9 +TAGS="terminfo" 3.10 +SHORT_DESC="Terminfo parsing library." 3.11 +MAINTAINER="maintainer@slitaz.org" 3.12 +LICENSE="LGPL-3+" 3.13 +WEB_SITE="https://github.com/neovim/unibilium/" 3.14 + 3.15 +TARBALL="$PACKAGE-$VERSION.tar.gz" 3.16 +WGET_URL="${WEB_SITE}archive/v$VERSION.tar.gz" 3.17 + 3.18 +BUILD_DEPENDS="libtool perl" 3.19 + 3.20 +# Rules to configure and make the package. 3.21 +compile_rules() 3.22 +{ 3.23 + make PREFIX=/usr && 3.24 + make install PREFIX=/usr 3.25 +} 3.26 + 3.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.28 +genpkg_rules() 3.29 +{ 3.30 + cook_copy_files *.so* 3.31 +}