view editors/nano/nano.sh @ 136:e737b80da269

core: merge .sh and .info
author David Demelier <markand@malikania.fr>
date Mon, 11 Mar 2019 14:59:13 +0100
parents 611ec6dd6db6
children 8076ef442b6c
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}
: ${COLOR:=yes}
: ${MULTIBUFFER:=yes}
: ${NANORC:=yes}
: ${NLS:=yes}

source ./nano.info

set -ex

if [ "$COLOR" = "yes" ]; then
	with_color="--enable-color"
else
	with_color="--disable-color"
fi

if [ "$MULTIBUFFER" = "yes" ]; then
	with_multibuffer="--enable-multibuffer"
else
	with_multibuffer="--disable-multibuffer"
fi

if [ "$NANORC" = "yes" ]; then
	with_nanorc="--enable-nanorc"
else
	with_nanorc="--disable-nanorc"
fi

if [ "$NLS" = "yes" ]; then
	with_nls="--enable-nls"
else
	with_nls="--disable-nls"
fi

rm -rf $PKGNAME-$PKGVERSION
tar xvaf $PKGNAME-$PKGVERSION.tar.xz
pushd $PKGNAME-$PKGVERSION

CC="$CC" \
CFLAGS="$CFLAGS" \
./configure \
	--build=$CBUILD \
	--host=$CHOST \
	--target=$CTARGET \
	--prefix=/usr \
	--with-wordbounds \
	$with_color \
	$with_multibuffer \
	$with_nanorc \
	$with_nls
make
make install DESTDIR=$DESTDIR

popd
rm -rf $PKGNAME-$PKGVERSION