From b410872a9706feeb598188868a29c41419a0276c Mon Sep 17 00:00:00 2001 From: john30 Date: Wed, 4 Apr 2018 10:19:02 +0200 Subject: [PATCH] removed no longer supported build helper --- make_freetz.sh | 78 -------------------------------------------------- 1 file changed, 78 deletions(-) delete mode 100755 make_freetz.sh diff --git a/make_freetz.sh b/make_freetz.sh deleted file mode 100755 index fd6c64b5..00000000 --- a/make_freetz.sh +++ /dev/null @@ -1,78 +0,0 @@ -#!/bin/sh -# ebusd - daemon for communication with eBUS heating systems. -# Copyright (C) 2014-2017 John Baier -# -# This program 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. -# -# This program 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 this program. If not, see . - -echo "*************" -echo " prepare" -echo "*************" -echo -VERSION=`head -n 1 VERSION` -ARCH=freetz -BUILD="build-$ARCH" -RELEASE="ebusd-$VERSION" -PACKAGE="${RELEASE}_${ARCH}.tgz" -export PATH=$PATH:/usr/mipsel-linux-uclibc/bin -rm -rf "$BUILD" -mkdir -p "$BUILD" || exit 1 -cd "$BUILD" || exit 1 -(tar cf - -C .. "--exclude=./$BUILD" --exclude=./.* "--exclude=*.o" "--exclude=*.a" .| tar xf -) || exit 1 - -echo -echo "*************" -echo " build" -echo "*************" -echo -./autogen.sh --host=mipsel-linux-uclibc || exit 1 -make DESTDIR="$PWD/$RELEASE" install-strip || exit 1 - -echo -echo "*************" -echo " pack" -echo "*************" -echo -cp contrib/etc/ebusd/* $RELEASE/ || exit 1 -mv $RELEASE/usr/bin/ebusd $RELEASE/usr/bin/ebusctl $RELEASE/ || exit 1 -rm -rf $RELEASE/usr/ $RELEASE/etc/ || exit 1 - -cat < $RELEASE/INFO -Package: ebusd -Version: $VERSION -Maintainer: John Baier -Homepage: https://github.com/john30/ebusd -Bugs: https://github.com/john30/ebusd/issues -Depends: libstdc++6 (>= 4.8.1), libc6, libgcc1 -Description: eBUS daemon. - ebusd is a daemon for handling communication with eBUS devices connected to a - 2-wire bus system. -EOF - -tar czf $RELEASE.tgz $RELEASE || exit 1 -mv $RELEASE.tgz "../$PACKAGE" || exit 1 - -echo -echo "*************" -echo " cleanup" -echo "*************" -echo -cd .. -rm -rf "$BUILD" - -echo -echo "Package created: $PACKAGE" -echo -echo "Content:" -tar tzvf "$PACKAGE" -