wok-next view procps-ng/receipt @ rev 21726

updated firefox-official (77.0 -> 81.0)
author Hans-G?nter Theisgen
date Sun Sep 27 14:34:31 2020 +0100 (2020-09-27)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="procps-ng"
4 VERSION="3.3.15"
5 CATEGORY="base-system"
6 SHORT_DESC="Programs for monitoring processes"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL2 LGPL2"
9 WEB_SITE="https://gitlab.com/procps-ng/procps"
10 LFS="http://www.linuxfromscratch.org/lfs/view/stable/chapter06/procps-ng.html"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
15 BUILD_DEPENDS="gettext-dev ncurses-dev"
16 SPLIT="$PACKAGE-dev"
18 DEPENDS_std="gettext-base ncurses"
19 TAGS_std="LFS"
21 compile_rules() {
22 ./configure \
23 --exec-prefix= \
24 --libdir=/usr/lib \
25 --disable-static \
26 --disable-kill \
27 $CONFIGURE_ARGS &&
28 fix libtool &&
29 make &&
30 make install || return 1
32 mkdir -p $install/lib
33 mv $install/usr/lib/libprocps.so.* $install/lib
34 ln -sf ../../lib/$(readlink $install/usr/lib/libprocps.so) \
35 $install/usr/lib/libprocps.so
36 }