wok rev 25523

created recipes for libvterm and libvterm-dev 0.3
author Hans-G?nter Theisgen
date Fri Feb 24 17:17:00 2023 +0100 (14 months ago)
parents beeeb88edf2a
children b7693f5d4c81
files libvterm-dev/receipt libvterm/description.txt libvterm/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libvterm-dev/receipt	Fri Feb 24 17:17:00 2023 +0100
     1.3 @@ -0,0 +1,17 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="libvterm-dev"
     1.7 +VERSION="0.3"
     1.8 +CATEGORY="development"
     1.9 +SHORT_DESC="Abstract library implementation of a VT220/xterm/ECMA-48 terminal emulator - development files."
    1.10 +MAINTAINER="maintainer@slitaz.org"
    1.11 +LICENSE="MIT"
    1.12 +WEB_SITE="http://www.leonerd.org.uk/code/libvterm/"
    1.13 +
    1.14 +WANTED="libvterm"
    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/libvterm/description.txt	Fri Feb 24 17:17:00 2023 +0100
     2.3 @@ -0,0 +1,8 @@
     2.4 +An abstract C99 library which implements a VT220
     2.5 +or xterm-like terminal emulator.
     2.6 +It doesn't use any particular graphics toolkit or
     2.7 +output system, instead it invokes callback function
     2.8 +pointers that its embedding program should provide it
     2.9 +to draw on its behalf.
    2.10 +It avoids calling malloc() during normal running state,
    2.11 +allowing it to be used in embedded kernel situations.
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/libvterm/receipt	Fri Feb 24 17:17:00 2023 +0100
     3.3 @@ -0,0 +1,30 @@
     3.4 +# SliTaz package receipt.
     3.5 +
     3.6 +PACKAGE="libvterm"
     3.7 +VERSION="0.3"
     3.8 +CATEGORY="libs"
     3.9 +TAGS="terminal"
    3.10 +SHORT_DESC="Abstract library implementation of a VT220/xterm/ECMA-48 terminal emulator."
    3.11 +MAINTAINER="maintainer@slitaz.org"
    3.12 +LICENSE="MIT"
    3.13 +WEB_SITE="http://www.leonerd.org.uk/code/libvterm/"
    3.14 +
    3.15 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.16 +WGET_URL="http://www.leonerd.org.uk/code/$PACKAGE/$TARBALL"
    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 +	sed -i	's| -Wpedantic| -pedantic|'	Makefile
    3.24 +
    3.25 +	make	PREFIX=/usr &&
    3.26 +	make	install PREFIX=/usr
    3.27 +}
    3.28 +
    3.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    3.30 +genpkg_rules()
    3.31 +{
    3.32 +	cook_copy_files	*.so*
    3.33 +}