view core/util-linux/util-linux.sh @ 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
children f55c9ef41a9a
line wrap: on
line source

#!/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