1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-09-29 01:29:48 +02:00
build/pkg/procps-ng/build

38 lines
782 B
Text
Raw Normal View History

VERSION="3.3.12"
SRCDIR="procps-ng-${VERSION}"
TARBALL="${SRCDIR}.tar.xz"
URL="https://sourceforge.net/projects/procps-ng/files/Production"
SHA256SUM="6ed65ab86318f37904e8f9014415a098bec5bc53653e5d9ab404f95ca5e1a7d4"
DEPENDS="ncurses"
prepare() {
apply_patches
}
build() {
local INPUT="$1"
local OUTPUT="$2"
ac_cv_func_malloc_0_nonnull=yes \
ac_cv_func_realloc_0_nonnull=yes \
$INPUT/configure --prefix="" --host="$TARGET" --disable-static \
--enable-watch8bit --with-ncurses --without-systemd \
--disable-kill --sbindir=/bin
make -j $NUMJOBS
}
deploy() {
local SOURCE="$1"
local BUILD="$2"
local DEPLOY="$3"
local DEVDEPLOY="$4"
make DESTDIR="$DEPLOY" install-strip
rm ${DEPLOY}/lib/*.la
rm -r "$DEPLOY/share"
split_dev_deploy "$DEPLOY" "$DEVDEPLOY"
}