mirror of
https://github.com/bettercap/bettercap
synced 2025-08-14 02:36:57 -07:00
misc: simplified build script
This commit is contained in:
parent
e98ac9938f
commit
292ceb8d82
1 changed files with 3 additions and 164 deletions
167
build.sh
167
build.sh
|
@ -1,7 +1,6 @@
|
|||
#!/bin/bash
|
||||
BUILD_FOLDER=build
|
||||
VERSION=$(cat core/banner.go | grep Version | cut -d '"' -f 2)
|
||||
CROSS_LIB="-L/tmp/libpcap-1.8.1/ -L/tmp/libusb-1.0.22/"
|
||||
|
||||
bin_dep() {
|
||||
BIN=$1
|
||||
|
@ -33,154 +32,18 @@ create_archive() {
|
|||
rm -rf bettercap bettercap.exe
|
||||
}
|
||||
|
||||
download_pcap() {
|
||||
bin_dep 'wget'
|
||||
bin_dep 'tar'
|
||||
|
||||
cd /tmp
|
||||
rm -rf libpcap-1.8.1
|
||||
if [ ! -f /tmp/libpcap-1.8.1.tar.gz ]; then
|
||||
echo "@ Downloading https://www.tcpdump.org/release/libpcap-1.8.1.tar.gz ..."
|
||||
wget -q https://www.tcpdump.org/release/libpcap-1.8.1.tar.gz -O /tmp/libpcap-1.8.1.tar.gz
|
||||
fi
|
||||
tar xf libpcap-1.8.1.tar.gz
|
||||
}
|
||||
|
||||
download_libusb() {
|
||||
bin_dep 'wget'
|
||||
bin_dep 'tar'
|
||||
|
||||
cd /tmp
|
||||
rm -rf libusb-1.0.22.tar.bz2
|
||||
if [ ! -f /tmp/libusb-1.0.22.tar.bz2 ]; then
|
||||
echo "@ Downloading https://github.com/libusb/libusb/releases/download/v1.0.22/libusb-1.0.22.tar.bz2 ..."
|
||||
wget -q https://github.com/libusb/libusb/releases/download/v1.0.22/libusb-1.0.22.tar.bz2 -O /tmp/libusb-1.0.22.tar.bz2
|
||||
fi
|
||||
tar xf libusb-1.0.22.tar.bz2
|
||||
}
|
||||
|
||||
xcompile_pcap() {
|
||||
ARCH=$1
|
||||
HOST=$2
|
||||
COMPILER=$3
|
||||
|
||||
bin_dep 'make'
|
||||
bin_dep 'yacc'
|
||||
bin_dep 'flex'
|
||||
bin_dep "$COMPILER"
|
||||
|
||||
echo "@ Cross compiling libpcap for $ARCH with $COMPILER ..."
|
||||
cd /tmp/libpcap-1.8.1
|
||||
export CC=$COMPILER
|
||||
./configure --host=$HOST --with-pcap=linux > /dev/null
|
||||
make CFLAGS='-w' -j4 > /dev/null
|
||||
}
|
||||
|
||||
xcompile_libusb() {
|
||||
ARCH=$1
|
||||
HOST=$2
|
||||
COMPILER=$3
|
||||
|
||||
bin_dep 'make'
|
||||
bin_dep "$COMPILER"
|
||||
|
||||
echo "@ Cross compiling libusb for $ARCH with $COMPILER ..."
|
||||
cd /tmp/libusb-1.0.22
|
||||
export CC=$COMPILER
|
||||
./configure --host=$HOST > /dev/null
|
||||
make CFLAGS='-w' -j4 > /dev/null
|
||||
}
|
||||
|
||||
build_linux_amd64() {
|
||||
echo "@ Building linux/amd64 ..."
|
||||
go build -o bettercap ..
|
||||
}
|
||||
|
||||
build_linux_arm7_static() {
|
||||
OLD=$(pwd)
|
||||
|
||||
download_pcap
|
||||
xcompile_pcap 'arm' 'arm-linux-gnueabi' 'arm-linux-gnueabi-gcc'
|
||||
download_libusb
|
||||
xcompile_libusb 'arm' 'arm-linux-gnueabi' 'arm-linux-gnueabi-gcc'
|
||||
|
||||
echo "@ Building linux/arm7 ..."
|
||||
cd "$OLD"
|
||||
env CC=arm-linux-gnueabi-gcc CGO_ENABLED=1 GOOS=linux GOARCH=arm GOARM=7 CGO_LDFLAGS="$CROSS_LIB" go build -o bettercap ..
|
||||
}
|
||||
|
||||
build_linux_arm7hf_static() {
|
||||
OLD=$(pwd)
|
||||
|
||||
download_pcap
|
||||
xcompile_pcap 'arm' 'arm-linux-gnueabihf' 'arm-linux-gnueabihf-gcc'
|
||||
download_libusb
|
||||
xcompile_libusb 'arm' 'arm-linux-gnueabihf' 'arm-linux-gnueabihf-gcc'
|
||||
|
||||
echo "@ Building linux/arm7hf ..."
|
||||
cd "$OLD"
|
||||
env CC=arm-linux-gnueabihf-gcc CGO_ENABLED=1 GOOS=linux GOARCH=arm GOARM=7 CGO_LDFLAGS="$CROSS_LIB" go build -o bettercap ..
|
||||
}
|
||||
|
||||
build_linux_mips_static() {
|
||||
OLD=$(pwd)
|
||||
|
||||
download_pcap
|
||||
xcompile_pcap 'mips' 'mips-linux-gnu' 'mips-linux-gnu-gcc'
|
||||
download_libusb
|
||||
xcompile_libusb 'mips' 'mips-linux-gnu' 'mips-linux-gnu-gcc'
|
||||
|
||||
echo "@ Building linux/mips ..."
|
||||
cd "$OLD"
|
||||
env CC=mips-linux-gnu-gcc CGO_ENABLED=1 GOOS=linux GOARCH=mips CGO_LDFLAGS="$CROSS_LIB" go build -o bettercap ..
|
||||
}
|
||||
|
||||
build_linux_mipsle_static() {
|
||||
OLD=$(pwd)
|
||||
|
||||
download_pcap
|
||||
xcompile_pcap 'mipsel' 'mipsel-linux-gnu' 'mipsel-linux-gnu-gcc'
|
||||
download_libusb
|
||||
xcompile_libusb 'mipsel' 'mipsel-linux-gnu' 'mipsel-linux-gnu-gcc'
|
||||
|
||||
echo "@ Building linux/mipsle ..."
|
||||
cd "$OLD"
|
||||
env CC=mipsel-linux-gnu-gcc CGO_ENABLED=1 GOOS=linux GOARCH=mipsle CGO_LDFLAGS="$CROSS_LIB" go build -o bettercap ..
|
||||
}
|
||||
|
||||
build_linux_mips64_static() {
|
||||
OLD=$(pwd)
|
||||
|
||||
download_pcap
|
||||
xcompile_pcap 'mips64' 'mips64-linux-gnuabi64' 'mips64-linux-gnuabi64-gcc'
|
||||
download_libusb
|
||||
xcompile_libusb 'mips64' 'mips64-linux-gnuabi64' 'mips64-linux-gnuabi64-gcc'
|
||||
|
||||
echo "@ Building linux/mips64 ..."
|
||||
cd "$OLD"
|
||||
env CC=mips64-linux-gnuabi64-gcc CGO_ENABLED=1 GOOS=linux GOARCH=mips64 CGO_LDFLAGS="$CROSS_LIB" go build -o bettercap ..
|
||||
}
|
||||
|
||||
build_linux_mips64le_static() {
|
||||
OLD=$(pwd)
|
||||
|
||||
download_pcap
|
||||
xcompile_pcap 'mips64el' 'mips64el-linux-gnuabi64' 'mips64el-linux-gnuabi64-gcc'
|
||||
download_libusb
|
||||
xcompile_libusb 'mips64el' 'mips64el-linux-gnuabi64' 'mips64el-linux-gnuabi64-gcc'
|
||||
|
||||
echo "@ Building linux/mips64le ..."
|
||||
cd "$OLD"
|
||||
env CC=mips64el-linux-gnuabi64-gcc CGO_ENABLED=1 GOOS=linux GOARCH=mips64le CGO_LDFLAGS="$CROSS_LIB" go build -o bettercap ..
|
||||
}
|
||||
|
||||
build_macos_amd64() {
|
||||
host_dep 'osxvm'
|
||||
|
||||
DIR=/Users/evilsocket/gocode/src/github.com/bettercap/bettercap
|
||||
|
||||
echo "@ Updating repo on MacOS VM ..."
|
||||
ssh osxvm "cd $DIR && rm -rf '$OUTPUT' && git pull" > /dev/null
|
||||
ssh osxvm "cd $DIR && rm -rf '$OUTPUT' && git checkout . && git checkout master && git pull" > /dev/null
|
||||
|
||||
echo "@ Building darwin/amd64 ..."
|
||||
ssh osxvm "export GOPATH=/Users/evilsocket/gocode && cd '$DIR' && PATH=$PATH:/usr/local/bin && go get ./... && go build -o bettercap ." > /dev/null
|
||||
|
@ -194,7 +57,7 @@ build_windows_amd64() {
|
|||
DIR=c:/Users/evilsocket/gopath/src/github.com/bettercap/bettercap
|
||||
|
||||
echo "@ Updating repo on Windows VM ..."
|
||||
ssh winvm "cd $DIR && git pull && go get ./..." > /dev/null
|
||||
ssh winvm "cd $DIR && git checkout . && git checkout master && git pull && go get ./..." > /dev/null
|
||||
|
||||
echo "@ Building windows/amd64 ..."
|
||||
ssh winvm "cd $DIR && go build -o bettercap.exe ." > /dev/null
|
||||
|
@ -202,36 +65,14 @@ build_windows_amd64() {
|
|||
scp -C winvm:$DIR/bettercap.exe . > /dev/null
|
||||
}
|
||||
|
||||
build_android_arm() {
|
||||
host_dep 'shield'
|
||||
|
||||
DIR=/data/data/com.termux/files/home/go/src/github.com/bettercap/bettercap
|
||||
|
||||
echo "@ Updating repo on Android host ..."
|
||||
ssh -p 8022 root@shield "cd "$DIR" && rm -rf bettercap* && git pull && go get ./..."
|
||||
|
||||
echo "@ Building android/arm ..."
|
||||
ssh -p 8022 root@shield "cd $DIR && go build -o bettercap ."
|
||||
|
||||
echo "@ Downloading bettercap ..."
|
||||
scp -C -P 8022 root@shield:$DIR/bettercap .
|
||||
}
|
||||
|
||||
rm -rf $BUILD_FOLDER
|
||||
mkdir $BUILD_FOLDER
|
||||
cd $BUILD_FOLDER
|
||||
|
||||
|
||||
build_linux_amd64 && create_archive bettercap_linux_amd64_$VERSION.zip
|
||||
build_macos_amd64 && create_archive bettercap_macos_amd64_$VERSION.zip
|
||||
build_windows_amd64 && create_exe_archive bettercap_windows_amd64_$VERSION.zip
|
||||
#build_android_arm && create_archive bettercap_android_arm_$VERSION.zip
|
||||
#build_linux_arm7_static && create_archive bettercap_linux_arm7_$VERSION.zip
|
||||
#build_linux_arm7hf_static && create_archive bettercap_linux_arm7hf_$VERSION.zip
|
||||
#build_linux_mips_static && create_archive bettercap_linux_mips_$VERSION.zip
|
||||
#build_linux_mipsle_static && create_archive bettercap_linux_mipsle_$VERSION.zip
|
||||
#build_linux_mips64_static && create_archive bettercap_linux_mips64_$VERSION.zip
|
||||
#build_linux_mips64le_static && create_archive bettercap_linux_mips64le_$VERSION.zip
|
||||
|
||||
sha256sum * > checksums.txt
|
||||
|
||||
echo
|
||||
|
@ -239,5 +80,3 @@ echo
|
|||
du -sh *
|
||||
|
||||
cd --
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue