wok rev 25522
created recipes for libtermkey and libtermkey-dev 0.22
author | Hans-G?nter Theisgen |
---|---|
date | Fri Feb 24 17:12:54 2023 +0100 (20 months ago) |
parents | f1a091c50397 |
children | 00914815b485 |
files | libtermkey-dev/receipt libtermkey/description.txt libtermkey/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/libtermkey-dev/receipt Fri Feb 24 17:12:54 2023 +0100 1.3 @@ -0,0 +1,17 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="libtermkey-dev" 1.7 +VERSION="0.22" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="Library for easy processing of keyboard entry from terminal-based programs - development files." 1.10 +MAINTAINER="maintainer@slitaz.org" 1.11 +LICENSE="MIT" 1.12 +WEB_SITE="http://www.leonerd.org.uk/code/" 1.13 + 1.14 +WANTED="libtermkey" 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/libtermkey/description.txt Fri Feb 24 17:12:54 2023 +0100 2.3 @@ -0,0 +1,4 @@ 2.4 +This library allows easy processing of keyboard entry 2.5 +from terminal-based programs. 2.6 +It handles all the necessary logic to recognise special keys, 2.7 +UTF-8 combining, and so on, with a simple interface.
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/libtermkey/receipt Fri Feb 24 17:12:54 2023 +0100 3.3 @@ -0,0 +1,27 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="libtermkey" 3.7 +VERSION="0.22" 3.8 +CATEGORY="libs" 3.9 +SHORT_DESC="Library for easy processing of keyboard entry from terminal-based programs." 3.10 +MAINTAINER="maintainer@slitaz.org" 3.11 +LICENSE="MIT" 3.12 +WEB_SITE="http://www.leonerd.org.uk/code/" 3.13 + 3.14 +TARBALL="$PACKAGE-$VERSION.tar.gz" 3.15 +WGET_URL="http://www.leonerd.org.uk/code/$PACKAGE/$TARBALL" 3.16 + 3.17 +BUILD_DEPENDS="libtool unibilium-dev" 3.18 + 3.19 +# Rules to configure and make the package. 3.20 +compile_rules() 3.21 +{ 3.22 + make PREFIX=/usr && 3.23 + make install PREFIX=/usr 3.24 +} 3.25 + 3.26 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.27 +genpkg_rules() 3.28 +{ 3.29 + cook_copy_files *.so* 3.30 +}