diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-10-10 22:14:45 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-10-10 22:15:57 +0300 |
commit | aa3f63fd497558a02feb3ddbc44f31eac091f39b (patch) | |
tree | 0e28b9b1f0501dd8be9e1a38db4ec1777fa3fbfa /nightly | |
parent | 7c10a6b61e9d06a4ae9cc9f942dfacb6fcfd9d3d (diff) | |
download | plus-aa3f63fd497558a02feb3ddbc44f31eac091f39b.tar.gz plus-aa3f63fd497558a02feb3ddbc44f31eac091f39b.tar.bz2 plus-aa3f63fd497558a02feb3ddbc44f31eac091f39b.tar.xz plus-aa3f63fd497558a02feb3ddbc44f31eac091f39b.zip |
Remove most unused files.
Diffstat (limited to 'nightly')
-rwxr-xr-x | nightly/buildlinux.sh | 33 | ||||
-rwxr-xr-x | nightly/buildwindows.sh | 40 | ||||
-rwxr-xr-x | nightly/evol.sh | 6 | ||||
-rwxr-xr-x | nightly/packevol | 14 | ||||
-rwxr-xr-x | nightly/packwin | 14 | ||||
-rwxr-xr-x | nightly/run tests.sh | 6 | ||||
-rwxr-xr-x | nightly/runme.sh | 6 |
7 files changed, 0 insertions, 119 deletions
diff --git a/nightly/buildlinux.sh b/nightly/buildlinux.sh deleted file mode 100755 index b57b5ee71..000000000 --- a/nightly/buildlinux.sh +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/bash - -cd .. - -DSTDIR=packaging/build/linux - -export CXXFLAGS="-Wall -g0 -O3" -autoreconf -i -#make clean -./configure --enable-portable=yes -result=$? -if [ "$result" != 0 ]; then - exit $result -fi - -make -j8 -result=$? -if [ "$result" != 0 ]; then - exit $result -fi - -if [ -e src/manaplus ]; -then - strip src/manaplus - rm -rf $DSTDIR - mkdir -p $DSTDIR - cp -r data $DSTDIR - mkdir -p $DSTDIR/bin - cp src/manaplus $DSTDIR/bin - cp nightly/runme.sh $DSTDIR - cp "nightly/run tests.sh" $DSTDIR - cp nightly/evol.sh $DSTDIR -fi diff --git a/nightly/buildwindows.sh b/nightly/buildwindows.sh deleted file mode 100755 index c3746f2cf..000000000 --- a/nightly/buildwindows.sh +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/bash - -dir=`pwd` - -cd .. -export PATH=/usr/i586-mingw32msvc/bin:$PATH -export CXXFLAGS="-Wall -g1 -O3" -cmake -DCMAKE_TOOLCHAIN_FILE=./build/toolchain.nightly . -result=$? -if [ "$result" != 0 ]; then - exit $result -fi - -make -j5 2>build/make.log -result=$? -if [ "$result" != 0 ]; then - exit $result -fi - -cd ./packaging/windows -./make-translations.sh -result=$? -if [ "$result" != 0 ]; then - exit $result -fi - -makensis -DDLLDIR=$dir/../packaging/windows/libs/dll/ \ - -DPRODUCT_VERSION="nightly-$1" \ - -DEXESUFFIX=/src \ - -DUPX=true \ - setup.nsi - -cp ../../nightly/setup_finish.bmp . -cp ../../nightly/setup_welcome.bmp . - -makensis -DDLLDIR=$dir/../packaging/windows/libs/dll/ \ - -DPRODUCT_VERSION="nightly-$1" \ - -DEXESUFFIX=/src \ - -DUPX=true \ - evol.nsi diff --git a/nightly/evol.sh b/nightly/evol.sh deleted file mode 100755 index 06af1d85a..000000000 --- a/nightly/evol.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash - -DIR=$(dirname "$(readlink -f $0)") -cd "$DIR" -export LD_LIBRARY_PATH="$DIR"/libs/:$LD_LIBRARY_PATH -./bin/manaplus ./data/evol/evol.manaplus diff --git a/nightly/packevol b/nightly/packevol deleted file mode 100755 index 1e0bc5d7d..000000000 --- a/nightly/packevol +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash - -cd .. - -dir=`pwd` - -cd packaging/windows -./make-translations.sh -makensis -DDLLDIR=$dir/../libs/dll/ \ - -DPRODUCT_VERSION="nightly-$1" \ - -DEXESUFFIX=/src \ - -DUPX=true \ - evol.nsi - diff --git a/nightly/packwin b/nightly/packwin deleted file mode 100755 index 05e4eac14..000000000 --- a/nightly/packwin +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash - -cd .. - -dir=`pwd` - -cd packaging/windows -./make-translations.sh -makensis -DDLLDIR=$dir/../libs/dll/ \ - -DPRODUCT_VERSION="nightly-$1" \ - -DEXESUFFIX=/src \ - -DUPX=true \ - setup.nsi - diff --git a/nightly/run tests.sh b/nightly/run tests.sh deleted file mode 100755 index f72450c58..000000000 --- a/nightly/run tests.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash - -DIR=$(dirname "$(readlink -f "$0")") -cd "$DIR" -export LD_LIBRARY_PATH="$DIR"/libs/:$LD_LIBRARY_PATH -./bin/manaplus --tests diff --git a/nightly/runme.sh b/nightly/runme.sh deleted file mode 100755 index 5f3f4abe8..000000000 --- a/nightly/runme.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash - -DIR=$(dirname "$(readlink -f $0)") -cd "$DIR" -export LD_LIBRARY_PATH="$DIR"/libs/:$LD_LIBRARY_PATH -./bin/manaplus |