blob: d926136e47b8e32d57dad8f78fa7b7b2aa4b4fb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
shopt -s extglob
pkg:setup
cd ..
mv * target
pkg:extract
mv !(target) host
cd host
./configure
make -j16
cd ../target
pkg:configure
make -j16 FILE_COMPILE="$(pwd)"/../host/src/file
pkg:install
|