wok view nnn/receipt @ rev 23616

updated rpcbind (0.2.0 -> 1.2.5)
author Hans-G?nter Theisgen
date Tue Apr 14 09:53:09 2020 +0100 (2020-04-14)
parents ca6ba44a15a1
children e060c533a38e
line source
1 # SliTaz package receipt.
3 PACKAGE="nnn"
4 VERSION="3.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="The missing terminal file manager for X."
7 MAINTAINER="developer@slitaz.org"
8 LICENSE="BSD-2"
9 WEB_SITE="https://github.com/jarun/nnn/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}archive/v$VERSION.tar.gz"
14 DEPENDS="libtinfo ncursesw readline"
15 BUILD_DEPENDS="libtinfo ncursesw-dev readline-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 # pkg-config does not work properly
21 sed -i 's|\$(LDLIBS_CURSES)|-lncursesw -ltinfo -lrt|' Makefile
23 make CFLAGS_OPTIMIZATION=-O2 PREFIX=/usr &&
24 make PREFIX=/usr install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 cp -a $install/usr $fs
31 }