wok annotate nnn/receipt @ rev 24148

Up nnn (4.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Nov 24 16:03:33 2021 +0000 (2021-11-24)
parents 44db1b779095
children c8002e745818
rev   line source
Hans-G?nter@21803 1 # SliTaz package receipt.
Hans-G?nter@21803 2
Hans-G?nter@21803 3 PACKAGE="nnn"
pascal@24148 4 VERSION="4.0"
Hans-G?nter@21803 5 CATEGORY="system-tools"
Hans-G?nter@21803 6 SHORT_DESC="The missing terminal file manager for X."
Hans-G?nter@21803 7 MAINTAINER="developer@slitaz.org"
Hans-G?nter@21803 8 LICENSE="BSD-2"
Hans-G?nter@21803 9 WEB_SITE="https://github.com/jarun/nnn/"
Hans-G?nter@21803 10
Hans-G?nter@21803 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@21803 12 WGET_URL="${WEB_SITE}archive/v$VERSION.tar.gz"
Hans-G?nter@21803 13
Hans-G?nter@21803 14 DEPENDS="libtinfo ncursesw readline"
Hans-G?nter@21803 15 BUILD_DEPENDS="libtinfo ncursesw-dev readline-dev"
Hans-G?nter@21803 16
pascal@24148 17 current_version()
pascal@24148 18 {
pascal@24148 19 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
pascal@24148 20 sed '/archive.*tar/!d;s|.*/v*\(.*\).tar.*|\1|;q'
pascal@24148 21 }
pascal@24148 22
Hans-G?nter@21803 23 # Rules to configure and make the package.
Hans-G?nter@21803 24 compile_rules()
Hans-G?nter@21803 25 {
Hans-G?nter@21803 26 # pkg-config does not work properly
pascal@22397 27 sed -i 's|\$(LDLIBS_CURSES)|-lncursesw -ltinfo -lrt|' Makefile
Hans-G?nter@21803 28
Hans-G?nter@23900 29 # -std=c11 invalid
Hans-G?nter@23900 30 sed -i 's|-std=c11|-std=c1x|' Makefile
Hans-G?nter@23900 31
Hans-G?nter@21803 32 make CFLAGS_OPTIMIZATION=-O2 PREFIX=/usr &&
Hans-G?nter@21803 33 make PREFIX=/usr install
Hans-G?nter@21803 34 }
Hans-G?nter@21803 35
Hans-G?nter@21803 36 # Rules to gen a SliTaz package suitable for Tazpkg.
Hans-G?nter@21803 37 genpkg_rules()
Hans-G?nter@21803 38 {
Hans-G?nter@23900 39 cp -a $install/usr $fs
Hans-G?nter@21803 40 }