From 003727289cc45e29eff0c0c48ad0f9660f96644f Mon Sep 17 00:00:00 2001 From: davidovski Date: Sun, 16 Jan 2022 15:02:47 +0000 Subject: separated patch, build, check and package stages --- repo/util/procps-ng.xibuild | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'repo/util/procps-ng.xibuild') diff --git a/repo/util/procps-ng.xibuild b/repo/util/procps-ng.xibuild index a5748ec..2c8731c 100644 --- a/repo/util/procps-ng.xibuild +++ b/repo/util/procps-ng.xibuild @@ -2,15 +2,22 @@ DEPS=(glibc ncurses) -SOURCE=https://sourceforge.net/projects/procps-ng/files/Production/procps-ng-3.3.17.tar.xz +PKG_VER=3.3.17 +SOURCE=https://sourceforge.net/projects/procps-ng/files/Production/procps-ng-$PKG_VER.tar.xz DESC="Utilities for monitoring your system and its processes" build () { ./configure --prefix=/usr \ - --docdir=/usr/share/doc/procps-ng-3.3.17 \ + --docdir=/usr/share/doc/procps-ng-$PKG_VER \ --disable-static \ --disable-kill make +} + +check () { make check +} + +package () { make DESTDIR=$PKG_DEST install } -- cgit v1.2.1