#! /bin/sh # GNU Mes --- Maxwell Equations of Software # Copyright © 2017,2018 Jan (janneke) Nieuwenhuizen # # This file is part of GNU Mes. # # GNU Mes is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or (at # your option) any later version. # # GNU Mes is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Mes. If not, see . set -e . ./config.status . ${srcdest}build-aux/config.sh . ${srcdest}build-aux/trace.sh SHELL=${SHELL-$(command -v sh)} # use bash or lose if pipes fail [ -n "$BASH" ] && set -o pipefail MES_PREFIX=${MES_PREFIX-$prefix/share/mes} GUILE=${GUILE-$(command -v guile)} || true if [ -z "$GUILE" -o "$GUILE" = true ]; then GUILE_EFFECTIVE_VERSION=${GUILE_EFFECTIVE_VERSION-2.2} else GUILE_EFFECTIVE_VERSION=${GUILE_EFFECTIVE_VERSION-$(guile -c '(display (effective-version))')} fi bindir=$(eval echo ${bindir-$prefix/bin}) datadir=$(eval echo ${datadir-$prefix/share}) docdir=$(eval echo ${docdir-$datadir/doc/mes-$VERSION}) infodir=$(eval echo ${infodir-$datadir/info}) mandir=$(eval echo ${mandir-$datadir/man}) moduledir=$(eval echo ${moduledir-$datadir/mes/module}) guile_site_dir=$(eval echo ${guile_site_dir-$prefix/share/guile/site/$GUILE_EFFECTIVE_VERSION}) guile_site_ccache_dir=$(eval echo ${guile_site_ccache_dir-$prefix/lib/guile/$GUILE_EFFECTIVE_VERSION/site-ccache}) mkdir -p $DESTDIR$bindir if [ -f src/x86-mes-mes ]; then cp src/x86-mes-mes $DESTDIR$bindir/mes fi cp scripts/mescc $DESTDIR$bindir/mescc sed \ -e "s,^#! /bin/sh,#! $SHELL," \ scripts/diff.scm > $DESTDIR$bindir/diff.scm chmod -w+x $DESTDIR$bindir/diff.scm mkdir -p $docdir if [ -n "$PERL" -a -n "$GIT" ]\ && $PERL -v > /dev/null\ && $GIT status > /dev/null; then $PERL ${srcdest}build-aux/gitlog-to-changelog --srcdir=. > ChangeLog fi cp\ AUTHORS\ BOOTSTRAP\ COPYING\ HACKING\ INSTALL\ NEWS\ README\ $DESTDIR$docdir if [ -f ChangeLog ]; then cp ChangeLog $DESTDIR$docdir else cp ChangeLog $DESTDIR$docdir fi if [ -f ChangeLog ]; then cp ChangeLog $docdir else cp ChangeLog $docdir fi mkdir -p $DESTDIR$MES_PREFIX if [ -z "$srcdest" ]; then tar -cf- --exclude='*.E' --exclude='*.*-out' include lib | tar -xf- -C $DESTDIR$MES_PREFIX tar -cf- --exclude='*.go' module | tar -xf- -C $DESTDIR$MES_PREFIX tar -cf- --exclude='*.gcc*' --exclude='*.mes*' scaffold | tar -xf- -C $DESTDIR$MES_PREFIX else tar -cf- -C ${srcdest} include lib | tar -xf- -C $DESTDIR$MES_PREFIX tar -cf- -C lib --exclude='*.E' --exclude='*.*-out' | tar -xf- -C $DESTDIR$MES_PREFIX tar -cf- -C ${srcdest} module | tar -xf- -C $DESTDIR$MES_PREFIX tar -cf- -C ${srcdest} scaffold | tar -xf- -C $DESTDIR$MES_PREFIX fi tar -cf- -C ${srcdest}mes module | tar -xf- -C $DESTDIR$MES_PREFIX if [ -f src/mes.x86-mes-S ]; then cp src/mes.x86-mes-S $DESTDIR$MES_PREFIX/lib/x86-mes/mes.S fi if [ -f src/mes.x86_64-mes-S ]; then cp src/mes.x86_64-mes-S $DESTDIR$MES_PREFIX/lib/x86_64-mes/mes.S fi mkdir -p $DESTDIR$guile_site_dir mkdir -p $DESTDIR$guile_site_ccache_dir tar -cf- -C ${srcdest}module --exclude='*.go' . | tar -xf- -C $DESTDIR$guile_site_dir tar -cf- -C module --exclude='*.scm' . | tar -xf- -C $DESTDIR$guile_site_ccache_dir if [ -f doc/mes.info ]; then mkdir -p $DESTDIR$infodir tar -cf- doc/mes.info* doc/images | tar -xf- --strip-components=1 -C $DESTDIR$infodir install-info --info-dir=$DESTDIR$infodir doc/mes.info fi if [ -f doc/mes.1 ]; then mkdir -p $DESTDIR$mandir/man1 cp doc/mes.1 $DESTDIR$mandir/man1/ fi if [ -f doc/mescc.1 ]; then mkdir -p $DESTDIR$mandir/man1 cp doc/mescc.1 $DESTDIR$mandir/man1/ fi