wok-next annotate procps-ng/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
rev   line source
al@19745 1 # SliTaz package receipt v2.
al@19576 2
al@19576 3 PACKAGE="procps-ng"
al@21064 4 VERSION="3.3.15"
al@19576 5 CATEGORY="base-system"
al@19576 6 SHORT_DESC="Programs for monitoring processes"
al@19576 7 MAINTAINER="al.bobylev@gmail.com"
al@19576 8 LICENSE="GPL2 LGPL2"
al@19576 9 WEB_SITE="https://gitlab.com/procps-ng/procps"
al@20436 10 LFS="http://www.linuxfromscratch.org/lfs/view/stable/chapter06/procps-ng.html"
al@19576 11
al@19576 12 TARBALL="$PACKAGE-$VERSION.tar.xz"
al@19576 13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
al@19576 14
al@21020 15 BUILD_DEPENDS="gettext-dev ncurses-dev"
al@21020 16 SPLIT="$PACKAGE-dev"
al@19576 17
al@21064 18 DEPENDS_std="gettext-base ncurses"
al@21064 19 TAGS_std="LFS"
al@21064 20
al@20436 21 compile_rules() {
al@19576 22 ./configure \
al@19576 23 --exec-prefix= \
al@19576 24 --libdir=/usr/lib \
al@19576 25 --disable-static \
al@19576 26 --disable-kill \
al@19576 27 $CONFIGURE_ARGS &&
al@20604 28 fix libtool &&
al@20604 29 make &&
al@20604 30 make install || return 1
al@19576 31
al@19576 32 mkdir -p $install/lib
al@19576 33 mv $install/usr/lib/libprocps.so.* $install/lib
al@19576 34 ln -sf ../../lib/$(readlink $install/usr/lib/libprocps.so) \
al@19576 35 $install/usr/lib/libprocps.so
al@19576 36 }