changeset 175:e78b33377502

core/procps: initial import, closes #1042
author David Demelier <markand@malikania.fr>
date Fri, 15 Mar 2019 20:47:31 +0100
parents 921e8785850a
children 7e1ce22dde64
files core/procps/procps.sh
diffstat 1 files changed, 74 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/core/procps/procps.sh	Fri Mar 15 20:47:31 2019 +0100
@@ -0,0 +1,74 @@
+#!/bin/sh
+#
+# Copyright (c) 2019 David Demelier <markand@malikania.fr>
+#
+# Permission to use, copy, modify, and/or distribute this software for any
+# purpose with or without fee is hereby granted, provided that the above
+# copyright notice and this permission notice appear in all copies.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+#
+
+PKGNAME=procps
+PKGVERSION=3.3.15
+PKGREVISION=1
+PKGLICENSE="GPLv2 LGPLv21+"
+PKGSUMMARY="monitoring tools"
+PKGDOWNLOAD="https://gitlab.com/procps-ng/procps/-/archive/v$PKGVERSION/$PKGNAME-v$PKGVERSION.tar.gz"
+PKGDEPENDS="lib/ncurses"
+PKGOPTIONS="NLS"
+
+: ${CHOST:=$(uname -m)-linux-musl}
+: ${CBUILD:=$(uname -m)-linux-musl}
+: ${CTARGET:=$(uname -m)-linux-musl}
+: ${CC:=gcc}
+: ${CFLAGS:=-O2}
+: ${CXX:=g++}
+: ${CXXFLAGS:=-O2}
+: ${LDFLAGS:=}
+: ${LIBS:=}
+: ${NLS:=yes}
+
+if [ "$NLS" = "yes" ]; then
+	PKGDEPENDS="core/gettext $PKGDEPENDS"
+	with_nls="--enable-nls"
+else
+	with_nls="--disable-nls"
+fi
+
+build()
+{
+	rm -rf $PKGNAME-v$PKGVERSION
+	tar xvaf $PKGNAME-v$PKGVERSION.tar.gz
+	pushd $PKGNAME-v$PKGVERSION
+
+	./autogen.sh
+	CC="$CC" \
+	CFLAGS="$CFLAGS" \
+	CXX="$CXX" \
+	CXXFLAGS="$CXXFLAGS" \
+	LDFLAGS="$LDFLAGS" \
+	LIBS="$LIBS" \
+	./configure \
+		--build=$CBUILD \
+		--host=$CHOST \
+		--target=$CTARGET \
+		--prefix=/usr \
+		--disable-libselinux \
+		--disable-static \
+		--disable-kill \
+		--enable-shared \
+		$with_nls
+	make
+	make install DESTDIR=$DESTDIR
+	rm -f $DESTDIR/usr/lib/libprocps.la
+
+	popd
+	rm -rf $PKGNAME-v$PKGVERSION
+}