mirror of
https://github.com/bol-van/zapret.git
synced 2025-04-19 21:42:59 +03:00
53 lines
1.0 KiB
Bash
Executable File
53 lines
1.0 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
SCRIPT=$(readlink -f "$0")
|
|
EXEDIR=$(dirname "$SCRIPT")
|
|
BINS=binaries
|
|
BINDIR=$EXEDIR/$BINS
|
|
|
|
check_dir()
|
|
{
|
|
echo 0.0.0.0 | "$BINDIR/$1/ip2net" 1>/dev/null 2>/dev/null
|
|
}
|
|
|
|
# link or copy executables. uncomment either ln or cp, comment other
|
|
ccp()
|
|
{
|
|
local F=$(basename $1)
|
|
[ -d "$EXEDIR/$2" ] || mkdir "$EXEDIR/$2"
|
|
[ -f "$EXEDIR/$2/$F" ] && rm -f "$EXEDIR/$2/$F"
|
|
ln -fs "../$BINS/$1" "$EXEDIR/$2" && echo linking : "../$BINS/$1" =\> "$EXEDIR/$2"
|
|
#cp -f "$BINDIR/$1" "$EXEDIR/$2" && echo copying : "$BINDIR/$1" =\> "$EXEDIR/$2"
|
|
}
|
|
|
|
ARCHLIST="aarch64 armhf mips64r2-msb mips32r1-lsb mips32r1-msb ppc x86_64 x86"
|
|
|
|
if [ "$1" = "getarch" ]; then
|
|
for arch in $ARCHLIST
|
|
do
|
|
if check_dir $arch; then
|
|
echo $arch
|
|
true
|
|
return
|
|
fi
|
|
done
|
|
else
|
|
for arch in $ARCHLIST
|
|
do
|
|
if check_dir $arch; then
|
|
echo $arch is OK
|
|
echo installing binaries ...
|
|
ccp $arch/ip2net ip2net
|
|
ccp $arch/mdig mdig
|
|
ccp $arch/nfqws nfq
|
|
ccp $arch/tpws tpws
|
|
true
|
|
return
|
|
else
|
|
echo $arch is NOT OK
|
|
fi
|
|
done
|
|
fi
|
|
|
|
false
|