wok view lesspipe/receipt @ rev 25549

created recipe for lesspipe
author Hans-G?nter Theisgen
date Mon Apr 03 06:53:23 2023 +0100 (13 months ago)
parents
children 2b069c72d47e
line source
1 # SliTaz package receipt.
3 PACKAGE="lesspipe"
4 VERSION="2.07"
5 CATEGORY="utilities"
6 TAGS="less"
7 SHORT_DESC="Input filter for less to better display files."
8 MAINTAINER="maintainer@slitaz.org"
9 LICENSE="GPL"
10 WEB_SITE="https://github.com/wofr06/lesspipe"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="$WEB_SITE/archive/refs/tags/v$VERSION.tar.gz"
15 SUGGESTED="bash"
16 DEPENDS="less" # busybox less ignores LESSOPEN variable
18 HOST_ARCH="any"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 # busybox rpm has no option v
24 patch --strip=0 --input=$stuff/patches/lesspipe.sh
26 mkdir -p $install/usr/bin
27 cp lesspipe.sh $install/usr/bin/lesspipe
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 cook_copy_folders bin
34 }
36 post_install()
37 {
38 echo "
39 To activate lesspipe enter:
40 export LESSOPEN='|lesspipe %s'"
41 }