wok view libvterm/receipt @ 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 (15 months ago)
parents
children 595fe6959202
line source
1 # SliTaz package receipt.
3 PACKAGE="libvterm"
4 VERSION="0.3"
5 CATEGORY="libs"
6 TAGS="terminal"
7 SHORT_DESC="Abstract library implementation of a VT220/xterm/ECMA-48 terminal emulator."
8 MAINTAINER="maintainer@slitaz.org"
9 LICENSE="MIT"
10 WEB_SITE="http://www.leonerd.org.uk/code/libvterm/"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="http://www.leonerd.org.uk/code/$PACKAGE/$TARBALL"
15 BUILD_DEPENDS="libtool perl"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 sed -i 's| -Wpedantic| -pedantic|' Makefile
22 make PREFIX=/usr &&
23 make install PREFIX=/usr
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 cook_copy_files *.so*
30 }