# HG changeset patch # User Hans-G?nter Theisgen # Date 1677255420 -3600 # Node ID 00914815b485c25c56b177d29a6fd1bf487bc673 # Parent beeeb88edf2a0b04f5f9de735ac582ffaf9c24dc created recipes for libvterm and libvterm-dev 0.3 diff -r beeeb88edf2a -r 00914815b485 libvterm-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libvterm-dev/receipt Fri Feb 24 17:17:00 2023 +0100 @@ -0,0 +1,17 @@ +# SliTaz package receipt. + +PACKAGE="libvterm-dev" +VERSION="0.3" +CATEGORY="development" +SHORT_DESC="Abstract library implementation of a VT220/xterm/ECMA-48 terminal emulator - development files." +MAINTAINER="maintainer@slitaz.org" +LICENSE="MIT" +WEB_SITE="http://www.leonerd.org.uk/code/libvterm/" + +WANTED="libvterm" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + get_dev_files +} diff -r beeeb88edf2a -r 00914815b485 libvterm/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libvterm/description.txt Fri Feb 24 17:17:00 2023 +0100 @@ -0,0 +1,8 @@ +An abstract C99 library which implements a VT220 +or xterm-like terminal emulator. +It doesn't use any particular graphics toolkit or +output system, instead it invokes callback function +pointers that its embedding program should provide it +to draw on its behalf. +It avoids calling malloc() during normal running state, +allowing it to be used in embedded kernel situations. diff -r beeeb88edf2a -r 00914815b485 libvterm/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libvterm/receipt Fri Feb 24 17:17:00 2023 +0100 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="libvterm" +VERSION="0.3" +CATEGORY="libs" +TAGS="terminal" +SHORT_DESC="Abstract library implementation of a VT220/xterm/ECMA-48 terminal emulator." +MAINTAINER="maintainer@slitaz.org" +LICENSE="MIT" +WEB_SITE="http://www.leonerd.org.uk/code/libvterm/" + +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="http://www.leonerd.org.uk/code/$PACKAGE/$TARBALL" + +BUILD_DEPENDS="libtool perl" + +# Rules to configure and make the package. +compile_rules() +{ + sed -i 's| -Wpedantic| -pedantic|' Makefile + + make PREFIX=/usr && + make install PREFIX=/usr +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cook_copy_files *.so* +}