mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
14 lines
221 B
Bash
Executable File
14 lines
221 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. config/options
|
|
|
|
$SCRIPTS/build toolchain
|
|
$SCRIPTS/build Python
|
|
|
|
. config/options.python
|
|
|
|
cd $BUILD/$1*
|
|
$PYTHON setup.py install --prefix /usr --root .install
|
|
|
|
find .install -name "*.py" -exec rm -rf "{}" ";"
|