changeset 83:5511fb992e74

core/util-linux: initial import, closes #1060
author David Demelier <markand@malikania.fr>
date Thu, 07 Mar 2019 20:05:00 +0100
parents 3600de78994f
children 91dce8ec3969
files core/util-linux/util-linux.info core/util-linux/util-linux.sh
diffstat 2 files changed, 100 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/core/util-linux/util-linux.info	Thu Mar 07 20:05:00 2019 +0100
@@ -0,0 +1,31 @@
+#!/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=util-linux
+PKGVERSION=2.33.1
+PKGREVISION=1
+PKGLICENSE="GPLv2+"
+PKGSUMMARY="standard Linux utilities"
+PKGDOWNLOAD="https://mirrors.edge.kernel.org/pub/linux/utils/util-linux/v2.33/$PKGNAME-$PKGVERSION.tar.xz"
+PKGOPTIONS="BASHCMP NLS PYTHON"
+
+if [ "${NLS:-yes}" = "yes" ]; then
+	PKGDEPENDS="core/gettext $PKGDEPENDS"
+fi
+if [ "${PYTHON:-yes}" = "yes" ]; then
+	PKGDEPENDS="python/python $PKGDEPENDS"
+fi
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/core/util-linux/util-linux.sh	Thu Mar 07 20:05:00 2019 +0100
@@ -0,0 +1,69 @@
+#!/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.
+#
+
+: ${CHOST:=$(uname -m)-linux-musl}
+: ${CBUILD:=$(uname -m)-linux-musl}
+: ${CC:=gcc}
+: ${CFLAGS:=-O2}
+
+source ./util-linux.info
+
+set -ex
+
+if [ "${BASHCMP:-yes}" = "no" ]; then
+	with_bash="--disable-bash-completion"
+else
+	with_bash="--enable-bash-completion"
+fi
+if [ "${NLS:-yes}" = "no" ]; then
+	with_nls="--disable-nls"
+else
+	with_nls="--enable-nls"
+fi
+if [ "${PYTHON:-yes}" = "no" ]; then
+	with_python="--without-python"
+else
+	with_python="--with-python=3"
+fi
+
+rm -rf $PKGNAME-$PKGVERSION
+tar xvaf $PKGNAME-$PKGVERSION.tar.xz
+pushd $PKGNAME-$PKGVERSION
+
+CC="$CC" \
+CFLAGS="$CFLAGS" \
+./configure \
+	--build=$CBUILD \
+	--host=$CHOST \
+	--prefix=/usr \
+	--libdir=/usr/lib \
+	--bindir=/usr/bin \
+	--sbindir=/usr/sbin \
+	--disable-static \
+	--enable-shared \
+	--enable-vipw \
+	--without-systemd \
+	--enable-usrdir-path \
+	${with_bash} \
+	${with_nls} \
+	${with_python}
+make
+make install DESTDIR=$DESTDIR
+rm -f $DESTDIR/usr/lib/lib{fdisk,smartcols,mount,blkid,uuid}.la
+
+popd
+rm -rf $PKGNAME-$PKGVERSION