mirror of
https://github.com/ish-app/ish.git
synced 2026-02-01 14:32:26 +00:00
11 lines
236 B
Bash
Executable File
11 lines
236 B
Bash
Executable File
#!/bin/bash
|
|
cd $MESON_SOURCE_ROOT/$MESON_SUBDIR
|
|
file=busybox-1.26.2
|
|
curl -LO http://busybox.net/downloads/$file.tar.bz2
|
|
tar -xf $file.tar.bz2
|
|
cd $file
|
|
export CFLAGS=-m32 LDFLAGS=-m32
|
|
make defconfig
|
|
make
|
|
cp busybox_unstripped ../busybox
|