wok-next annotate psmisc/receipt @ rev 21020

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
parents 90a5eb560fd6
children a43eb412173d
rev   line source
al@19745 1 # SliTaz package receipt v2.
al@19571 2
al@19571 3 PACKAGE="psmisc"
al@20436 4 VERSION="23.1"
al@19571 5 CATEGORY="system-tools"
al@19571 6 SHORT_DESC="PSmisc - Small utilities that use the /proc filesystem"
al@19571 7 MAINTAINER="al.bobylev@gmail.com"
al@19571 8 LICENSE="GPL2"
al@19571 9 WEB_SITE="http://psmisc.sourceforge.net/"
al@20436 10 LFS="http://www.linuxfromscratch.org/lfs/view/stable/chapter06/psmisc.html"
al@19571 11
al@20436 12 TARBALL="$PACKAGE-$VERSION.tar.xz"
al@19571 13 WGET_URL="$SF_MIRROR/psmisc/$TARBALL"
al@19571 14
al@21020 15 BUILD_DEPENDS="gettext-dev ncurses-dev"
al@19571 16
al@20436 17 compile_rules() {
al@21020 18 ./configure $CONFIGURE_ARGS &&
al@21020 19 make &&
al@21020 20 make install || return 1
al@19571 21
al@19571 22 mkdir -p $install/bin
al@19571 23 mv $install/usr/bin/fuser $install/bin
al@19571 24 mv $install/usr/bin/killall $install/bin
al@19571 25 }
al@19571 26
al@20436 27 genpkg_rules() {
al@19745 28 copy @std
al@19745 29 DEPENDS="ncurses"
al@20436 30 TAGS="LFS"
al@19571 31 }