blob: b3898e369a9935c1e958f30b29859fd11543c4e9 (
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
cd ../target
pkg:configure
make FILE_COMPILE="$(pwd)"/../host/src/file
pkg:install
|