wok-next view psmisc/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="psmisc"
4 VERSION="23.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="PSmisc - Small utilities that use the /proc filesystem"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="http://psmisc.sourceforge.net/"
10 LFS="http://www.linuxfromscratch.org/lfs/view/stable/chapter06/psmisc.html"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="$SF_MIRROR/psmisc/$TARBALL"
15 BUILD_DEPENDS="gettext-dev ncurses-dev"
17 DEPENDS_std="ncurses"
18 TAGS_std="LFS"
20 compile_rules() {
21 ./configure $CONFIGURE_ARGS &&
22 make &&
23 make install || return 1
25 mkdir -p $install/bin
26 mv $install/usr/bin/fuser $install/bin
27 mv $install/usr/bin/killall $install/bin
28 }