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

Add qt5 - now it's look good enough
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Oct 20 03:29:40 2017 +0300 (2017-10-20)
parents 01b295f47e95
children 90a5eb560fd6
line source
1 # SliTaz package receipt v2.
3 PACKAGE="procps-ng"
4 VERSION="3.3.12"
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"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 BUILD_DEPENDS="gettext ncurses-dev"
15 SPLIT="procps-ng-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --exec-prefix= \
22 --libdir=/usr/lib \
23 --docdir=/usr/share/doc/procps-ng-$VERSION \
24 --disable-static \
25 --disable-kill \
26 $CONFIGURE_ARGS &&
27 make && make install
29 mkdir -p $install/lib
30 mv $install/usr/lib/libprocps.so.* $install/lib
31 ln -sf ../../lib/$(readlink $install/usr/lib/libprocps.so) \
32 $install/usr/lib/libprocps.so
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 case $PACKAGE in
39 procps-ng)
40 copy @std
41 DEPENDS="gettext-base ncurses"
42 ;;
43 *-dev) copy @dev;;
44 esac
45 }