Skip to content

Commit 48838d6

Browse files
author
root
committed
Updating Tools
1 parent 68cddca commit 48838d6

File tree

6 files changed

+12
-15
lines changed

6 files changed

+12
-15
lines changed

apktool/install

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/bin/bash -e
22
mkdir bin
33
wget https://raw.githubusercontent.com/iBotPeaches/Apktool/master/scripts/linux/apktool
4-
wget https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_2.0.2.jar
5-
mv apktool_2.0.2.jar bin/apktool.jar
4+
wget https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_2.2.0.jar
5+
mv apktool_2.2.0.jar bin/apktool.jar
66
mv apktool bin/
77
chmod 755 bin/apktool
88
chmod 755 bin/apktool.jar

df/install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
wget -O - http://www.bay12games.com/dwarves/df_42_02_linux.tar.bz2 | tar xj
3+
wget -O - http://www.bay12games.com/dwarves/df_43_05_linux.tar.bz2 | tar xj
44

55
mkdir -p bin
66
cat <<END > bin/dwarf_fortress

gdb/install

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

3-
curl https://ftp.gnu.org/gnu/gdb/gdb-7.11.tar.gz | tar xz
4-
cd gdb-7.11
3+
curl https://ftp.gnu.org/gnu/gdb/gdb-7.11.1.tar.gz | tar xz
4+
cd gdb-7.11.1
55
./configure --prefix=$(dirname $PWD) --with-python=python2 --enable-targets=all
66
make -j $(nproc)
77
make install

qemu/install

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

3-
curl http://wiki.qemu-project.org/download/qemu-2.4.1.tar.bz2 | tar xvj
4-
cd qemu-2.4.1
3+
curl http://wiki.qemu-project.org/download/qemu-2.6.1.tar.bz2 | tar xvj
4+
cd qemu-2.6.1
55
if [[ "$(python --version 2>&1)" =~ Python\ 3 ]]; then
66
./configure "--prefix=$(dirname $PWD)" "--python=$(which python2)"
77
else

reveng/install

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#!/bin/bash
22

3-
curl http://jaist.dl.sourceforge.net/project/reveng/1.4.0/reveng-1.4.0.tar.gz | tar xz
4-
cd reveng-1.4.0
3+
curl http://jaist.dl.sourceforge.net/project/reveng/1.4.4/reveng-1.4.4.tar.gz | tar xz
4+
cd reveng-1.4.4
55
sed -i -e "s/^#define BMP_BIT.*/#define BMP_BIT 64/" config.h
66
sed -i -e "s/^#define BMP_SUB.*/#define BMP_SUB 32/" config.h
77
make -j $(nproc)
88
cd ..
99

1010
mkdir -p bin
11-
cp reveng-1.4.0/reveng bin
11+
cp reveng-1.4.4/reveng bin

snowman/install

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,8 @@
22

33
INST_DIR=$PWD
44

5-
#[ -e snowman ] || git clone --depth 1 --depth 1 https://github.com/yegord/snowman
6-
[ -e v1.0.tar.gz ] || wget https://github.com/nihilus/snowman/archive/v1.0.tar.gz
7-
tar xzf v1.0.tar.gz
8-
cd snowman-1.0
9-
rm -rf build
5+
[ -e snowman ] || git clone --depth 1 https://github.com/yegord/snowman
6+
cd snowman
107
mkdir build
118
cd build
129
cmake -D CMAKE_INSTALL_PREFIX=$INST_DIR ../src

0 commit comments

Comments
 (0)